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": "85ddb062-fe40-4a22-9a78-5125b8aaa3f7",
"ParentId": "c13dd4b0-d1b4-4fa7-b205-e669637aeef9",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"dd6c3962-345d-46c1-82ed-54ac9879c670",
"78872872-63f8-4d95-9f46-16f2725796a0"
],
"Companies": [
"d9bbc3fb-c382-4f10-bb18-400214f2d050",
"f5d5ca6a-e87f-4dae-81c8-2e5994c1490a"
],
"Groups": [
"235ea63b-b48d-4c05-ac17-5dae95995bc0",
"34937033-8408-4ec9-a60e-874d42a3ecd6"
],
"Opportunities": [
"76a987b0-d44d-42fb-ba1d-1e8c9faf7843",
"5a7d78db-fcb1-47ff-bab5-4d0abc737676"
]
}
}
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.