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": "5b1a734e-4ad4-46b8-b1cd-a64991bf2081",
"ParentId": "0adf2ffb-aaad-4f6c-b5fa-e280867a6468",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"51488b0f-c58f-47db-8f14-f7cb760f5429",
"02a28c04-d14e-41e6-bf80-bd45a2954a73"
],
"Companies": [
"718ebd3f-a254-4e5b-ad34-96c8990ac654",
"b7af3032-9c63-446d-8419-029e51ae31d8"
],
"Groups": [
"4f06c34a-372a-4109-a466-252e552bc222",
"fff14794-8f34-4536-bc27-afe55cfbfebb"
],
"Opportunities": [
"728bfa48-3c27-4940-ba1d-14e8cdab9ed9",
"56003893-d82d-4d7e-b1db-2ed1646ddee5"
]
}
}
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.