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": "5768cf30-3827-40de-9ac1-ca8ab3de3248",
"ParentId": "66800c4b-899a-40d2-a00a-e3af22685f61",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4c919738-1bb2-4ac5-85a9-1286a4ad3183",
"2d8ce244-ec52-4221-a03c-24ad7aadb76c"
],
"Companies": [
"f64cc2d2-0318-4035-863c-26c4f6c1a527",
"31e931e6-9b22-4b0d-ac2d-3685f3e95ede"
],
"Groups": [
"5b18299b-60ee-4c76-8411-9bb721ec3f06",
"b712c849-803a-4975-b9a6-5dc11e25fcfd"
],
"Opportunities": [
"84742c16-667d-44b6-90fb-e8340b999d21",
"9e33b2af-58e3-4599-9772-3f2cf309d9ae"
]
}
}
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.