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": "1a718fcc-6e34-4ce1-9e59-8f0958572b9a",
"ParentId": "0ff08ab1-8041-40fa-931a-704a069474d3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3e7a5629-4e20-4fbe-b8ca-4105f86f902a",
"1f4b5e00-a250-46a2-9a61-45b959779fbf"
],
"Companies": [
"30a2798c-001d-476f-b9f5-1e6f5ec18d63",
"59df6dc4-2350-4b93-9069-c7d191f8860b"
],
"Groups": [
"50f91317-1eed-474e-859c-93fd528e4cef",
"dd542b16-67ad-43fe-b145-80113491b113"
],
"Opportunities": [
"e0acd954-2b55-4519-b57d-d6488442d2c0",
"8e52e362-bc6a-4e69-9c40-03e81a434ed5"
]
}
}
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.