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": "0bba29a8-c618-41da-bb73-e3dcf4d813d4",
"ParentId": "3377f926-91a4-43b1-9ab4-5218b6a0186a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"8ca2626f-f10c-433c-9d58-b526c29c3b08",
"833be30d-fd7e-472b-a972-d8ecd71e734f"
],
"Companies": [
"0df46509-7cf7-48b5-a3a4-beb09ce8254e",
"ee0916a3-e7ec-4b73-8687-2bff811873a3"
],
"Groups": [
"22f2dca2-0270-4fae-8984-fe3da2b22d08",
"0d62ac62-1650-4e00-94af-6d7ad9949638"
],
"Opportunities": [
"755316f1-64ed-4a18-bfab-d9f0a57e0bc0",
"037e9349-f468-4ba4-8562-1112d5a917d6"
]
}
}
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.