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": "4e01c677-4d37-438b-a24f-79935eaeec95",
"ParentId": "49a90699-61be-45fb-b94c-09483feac833",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a67ca822-c012-4f8d-803f-ef8970aa030e",
"c790cffd-035c-41de-b352-79c70eca8006"
],
"Companies": [
"a057842d-dcb8-4228-9a08-f841039311b4",
"48d93233-c715-48fc-b128-0718da148040"
],
"Groups": [
"762f97b1-2139-42e3-aaf0-04d48be34963",
"8d21a2d7-3dae-40e4-ba33-9a89fd369f18"
],
"Opportunities": [
"f7db7816-5bd5-4ff3-9399-4431227f11d6",
"600b112a-f3ea-41cf-bf30-8e445eebdf6d"
]
}
}
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.