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": "f609ef60-9ae1-4d74-97be-7942850ee61a",
"ParentId": "e220903d-0b93-423f-911e-b2140d0425c4",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"cbc2c20d-274b-4eeb-8b8e-19db1b156441",
"62f5cc0b-6f97-42d1-8421-d1083ba66b5b"
],
"Companies": [
"830aedeb-6053-4e04-8f20-24110738653e",
"c054f980-1074-4884-b942-858cf3c3cbf9"
],
"Groups": [
"832b99a0-3dbc-40fb-8538-d594e489624e",
"3ee2cf68-bc3a-49f8-be6a-12dda3c766d0"
],
"Opportunities": [
"3f7673f3-de77-4090-be85-db6d8a4f0ea9",
"5aacf19d-60e3-4242-9a15-719e67b832ee"
]
}
}
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.