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": "ee74f991-2086-4c9b-a6b9-6c88d5550481",
"ParentId": "8b940a3a-04b1-4309-a0fe-05ddc1b56b3c",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d6fff226-bad8-40d0-b2cf-3a71b6de75ef",
"b99b7013-ca43-448c-9107-d50213d73b28"
],
"Companies": [
"b2e14db0-8600-48a9-8d70-6606672784fd",
"6ce6acf5-1ad2-4ccd-9364-7b7d02b97836"
],
"Groups": [
"89790644-0a7d-4898-b27b-49b35a5523e7",
"f1e76129-0596-4320-9b0e-7191193c6a20"
],
"Opportunities": [
"6329ec15-14cd-47d6-93a0-15947ceb3bc2",
"5392dc1a-d559-4770-a006-c32a2c46a3fa"
]
}
}
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.