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": "507a2f4a-f37b-49a9-b15f-683f4e3e6700",
"ParentId": "4c0547fd-6d37-4118-b411-928e3c3ad795",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"49304126-8995-4a4c-8e35-5d03a6fa4c32",
"b474385d-6217-41e2-a54d-af9e80309756"
],
"Companies": [
"8bffd19a-e1a9-4992-9d53-455fa588e238",
"aed4efc5-2152-4900-bdce-2b3dce27fd7b"
],
"Groups": [
"b57c104f-4b23-4eb1-98eb-9e20c37dd528",
"d8d7a803-b863-4182-a1e5-31798946d734"
],
"Opportunities": [
"caef4463-6f95-4252-8708-97eaa57b3d2b",
"ba66bc23-50c4-41dd-aa1f-530438f38c30"
]
}
}
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.