PUT api/Contacts/{id}
Updates an existing Contact Record.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Contact Id that is to be updated |
globally unique identifier |
Required |
Body Parameters
The Contact record data must be passed in through the body of the request in Json format. Set Content-Type header to application/json
MutableEntityExtended| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| ParentId |
This field will only include data when working with Group records. |
globally unique identifier |
None. |
| Fields | Dictionary of string [key] and Object [value] |
None. |
|
| LinkedEntities | LinkedEntities |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "968a2024-c3ad-4431-ae53-741b6a0c37b5",
"ParentId": "df5a0a3f-0148-46a5-bf50-d98fd60f1e00",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d10379b5-bd6b-4450-87b0-642c2f29dd29",
"9e08217a-2a5f-48eb-a65e-52b5be3acd91"
],
"Companies": [
"d2f84262-bcd2-4ad7-9a68-5eeca1f39e36",
"3128a5bc-3993-4ea5-af6d-4e6dd2353807"
],
"Groups": [
"444650c2-4b32-4238-99af-33a02b2d6400",
"9d7d3baf-ba77-4395-b36d-77aff45ddfe7"
],
"Opportunities": [
"51e6a912-516e-4bf6-9550-dcf6a2ee566a",
"9c08b0a7-70d4-4568-abf1-e0580813fd7e"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
This endpoint does not return any data when record is updated.
None.