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": "e878853a-1d98-4f7a-8b5d-dac3fb7e6f55",
"ParentId": "a11d0514-c793-4c5d-a32c-af5b59fa9bfb",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"19455a13-2745-4bee-96b0-73491fb603a4",
"50bf77ec-bc43-45e1-a2e7-64bc8ec0c7df"
],
"Companies": [
"767c05b3-6690-41ba-8e76-2e33b2fd1433",
"08680045-1a84-4e03-a9ac-8efc14533150"
],
"Groups": [
"97893aad-7b88-41bd-a2eb-42ded0e78388",
"2e909229-9d25-4875-b80a-83437e483e3c"
],
"Opportunities": [
"79596439-6403-40a8-a697-db036ccdcc93",
"772e845a-6814-4c88-9d4c-6763446a28bb"
]
}
}
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.