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": "59df5d4c-7d19-438f-98cb-bef43e9f9a71",
"ParentId": "7d03315a-525b-48a9-aa5e-dff772aa5073",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"1c322531-311a-4279-8798-3880b38018ba",
"59003f23-0c19-4da8-a694-72be55ea22f6"
],
"Companies": [
"1bfb91d7-9805-45c8-9ad4-0e1817c696c5",
"37d7809e-8ed6-4eff-8391-2a8830ddf850"
],
"Groups": [
"d3544839-ab5e-420d-9c93-00caa3bb85ee",
"2d1ba09a-68e6-4a52-9982-f629687ec04e"
],
"Opportunities": [
"cad720a0-7a52-4635-ba9b-7845f164a96f",
"fd16bbb1-b968-4710-bcf9-d92dbbdf120e"
]
}
}
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.