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": "d5e02a97-c244-4daa-96f8-b1d3169033a7",
"ParentId": "e32a2938-a11a-49e9-aeb4-f57860c39e60",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"c54ce2e7-7f6f-4192-95a4-25e5d57102fd",
"0e4c5f08-a371-409e-a505-de6a6104e663"
],
"Companies": [
"22961dff-9e45-4166-903f-5d3e07e214fa",
"0108070d-b70f-41dc-acda-5748bf02d2c4"
],
"Groups": [
"55b89159-72a1-4553-ba4d-d8e68cb01e80",
"25a333be-f0a0-42c5-86c3-5f0cb0845d52"
],
"Opportunities": [
"9cb761e8-7cb1-44c2-a313-ea2ca7f53e3b",
"377adbdd-927b-477c-9423-a84c6babef73"
]
}
}
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.