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": "00820be6-77b6-4096-b4cd-fa11badcf8c0",
"ParentId": "06bca04f-02b0-4a8d-80a7-740263994274",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"5c93d51e-0104-4553-ba2e-b8551f7641fa",
"83446200-f9c5-4c72-9ab2-e49918136817"
],
"Companies": [
"61b7192a-5dcf-490c-bbba-8db59b561a3c",
"e7faa764-1192-45a7-b3a0-07d36ae74d75"
],
"Groups": [
"813d968d-74c9-4dc2-9462-f1a969d0907b",
"27340002-0c53-42f1-b2c2-0e57bb0c95c0"
],
"Opportunities": [
"f7c11555-8d8f-4ab4-b92d-b72bef7cf721",
"b10fa14a-3b8d-49b4-a96b-e1433b038ece"
]
}
}
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.