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": "37bb58f3-621b-42fa-ab35-4a5f464dd03e",
"ParentId": "f0680b7e-937a-48f9-9713-972d601aff82",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3cf1d2aa-5d1d-4762-aa07-1da64b8d9da8",
"73af0b9b-5413-456d-9c88-b0d1c91cb4f1"
],
"Companies": [
"5d27303b-be29-4212-b4f2-8c323d6253ed",
"1f9a0e4a-0a26-4c29-8bdd-548af7dd4ca0"
],
"Groups": [
"25e796fa-0cf1-4ad7-85df-0e95b8a326fc",
"75a36c13-d9f8-4917-b86e-19c356ff4db7"
],
"Opportunities": [
"492a9ae4-0152-4d3a-a0d8-fecd17c8f9f2",
"3f760e70-17c4-4e91-80d8-7e35115a28b4"
]
}
}
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.