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": "b8a43455-efb3-4eaa-856c-2231b56a285f",
"ParentId": "e5d103f2-ada7-455a-acd0-57b84533ef3d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a8f042d5-1f36-49d3-9502-e767bab0a252",
"3affb785-85ca-4c3a-8160-3d7b8d059f07"
],
"Companies": [
"e030f19b-ff4b-48ae-947d-9750ba720357",
"156a89bd-222f-4a16-8032-444d6c00e20e"
],
"Groups": [
"7026d126-be0f-4ffc-877d-61b6dfb67c44",
"67579888-357a-4a7a-9c82-5764e376dbd5"
],
"Opportunities": [
"feb74826-d3d3-4642-ac68-75c29e4070bb",
"f691c4b8-518b-4472-b463-ef3f5a7bfb74"
]
}
}
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.