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": "0071298e-130a-415a-bda0-be51a86fc80c",
"ParentId": "dda9cc3e-6f69-46e9-a1ae-b26f28cfd05e",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"27007bc7-0a5d-4eae-98a4-a0a03dff4a0a",
"e4f96704-5e47-40f1-aa8e-04b45e2727ae"
],
"Companies": [
"972248a5-3c09-4c20-803c-7eb512d83f95",
"2f29523c-ffe0-4a56-9866-f193128d3cc6"
],
"Groups": [
"0953c0fd-1f6d-466c-9155-a3956f684272",
"172423f6-1626-4b2c-a003-0d0717b1268a"
],
"Opportunities": [
"a2280b92-b544-4419-a46b-b7793607b2ff",
"5a933c1e-7f40-4d33-8232-a7ea6ba0f44e"
]
}
}
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.