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": "9cc36663-e2a8-4a09-b765-d26f76a6da33",
"ParentId": "707c24db-75c1-4ec4-a3e2-189515216545",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"bcae656c-d124-48ff-b2df-2106fe326dd0",
"0cf5e714-e51e-4fc9-8d30-0b20e447ceb3"
],
"Companies": [
"23a18a2e-2471-41ab-8ec0-e937abf554f7",
"a78a217e-5cb4-412b-a725-8141d60b54db"
],
"Groups": [
"1127ca45-a81a-42a6-9cba-20389e648efc",
"f7a82901-f79e-43a1-8dc5-d5cf9e0d6986"
],
"Opportunities": [
"50324fe5-f967-4331-bae2-d3069d1521e9",
"ad6c9976-2199-4c53-8fff-25befe40f0d2"
]
}
}
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.