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": "2df3f198-6f07-466c-8293-2a4795a3695f",
"ParentId": "05f6b3b2-ca01-4730-9fff-fc4eec3909b2",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ba7becc7-f6d0-47d2-ba5a-fa05132d4840",
"35f19cc2-bacb-4a6f-a8f2-2029c691f611"
],
"Companies": [
"83983009-c1b9-411b-add8-b209f3b00ca6",
"5d829463-7db3-4ee4-9f1a-fc9332dd8301"
],
"Groups": [
"ca55cd16-e2bb-453f-93f9-efa086313606",
"fa4ffd54-13b1-4133-9d63-c56c08a612b2"
],
"Opportunities": [
"56d8704c-c44d-43f2-a898-645743c6ca7e",
"e9da299e-be96-4e0e-b054-9938106e3eab"
]
}
}
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.