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": "4bb96ac0-07c5-4ff1-85c1-379d4439dcef",
"ParentId": "0d3bc7f1-2615-4d79-a8d3-39746311ed06",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4664b967-a4ac-40bf-b2d5-f19dd5800a37",
"ba79c584-0292-4f8b-8ba9-867de8b52310"
],
"Companies": [
"9deacc76-64dd-4a0c-88c1-2efec5402cba",
"dbf8ab3b-0a76-44e8-90c9-dd4e1796eec7"
],
"Groups": [
"4599bbdd-ba3f-4491-a9d4-9b0092896e76",
"5e6f1c62-c1fa-479f-95e8-41847df5c303"
],
"Opportunities": [
"a4e62acd-95f9-4c55-a644-6d68ce3b9774",
"4049be12-9237-4c9b-b512-a8b55a667d68"
]
}
}
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.