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": "90d10133-83be-4d5f-90f5-7b57c1db3b6f",
"ParentId": "7b46ae4e-0018-4b8f-8a1d-f5af6be54c6d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"6e66938e-ed96-4c1f-8e68-7995e25c0a61",
"e8859955-f44b-452b-ba64-d48464727b99"
],
"Companies": [
"4d45615a-9dc9-417b-9eb7-4fa467e51066",
"a654f1e7-7abb-4819-98ca-70c1ae51d7be"
],
"Groups": [
"5c436a41-c14d-4020-a239-ef437b54fd22",
"cb387671-d6e1-4a42-aa0a-8fab7da878cc"
],
"Opportunities": [
"64eede1b-9c85-4394-a629-158f934cf61d",
"c1a78e71-436f-4206-bbec-ff6319500049"
]
}
}
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.