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": "d6234ec9-eaf3-4158-be7e-f949ae595d26",
"ParentId": "7a1101d5-9682-4780-a059-47a49983e49d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"99fe58d4-5db8-4abd-8042-c79ef003bad2",
"4bd214bc-aecf-4aec-b065-1a94af725f5a"
],
"Companies": [
"180f0b28-b8bf-4100-9707-f109fae8f72d",
"9bd91770-0584-460e-a25e-fd6d24b0a248"
],
"Groups": [
"c333077f-a75c-453f-accb-996540db62bc",
"bb67109e-79d8-4212-936f-96bd00bd2361"
],
"Opportunities": [
"c1e83612-578c-46d8-b428-38a436d10a3f",
"892d579d-b75a-4afd-a640-cb077eab63e0"
]
}
}
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.