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": "bffb76c0-bba7-49ab-a281-32f8bff6061e",
"ParentId": "9ed2f1e2-762c-4cba-9c6a-26bf34dcb896",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"2d39704e-df83-4591-9f16-d8bc5a25da45",
"8c4c590e-895e-422b-a50a-b2095a0fcd62"
],
"Companies": [
"16b7d590-40a9-4063-96b8-4bb1a90c3e19",
"0bd85aea-08be-458d-8c7b-75cb88ee541f"
],
"Groups": [
"e66cb8bf-2aac-4229-a623-d33d6800ba4a",
"24f0a650-adfe-4caf-9218-61b06868c043"
],
"Opportunities": [
"2f7f33d6-b8e8-419d-9b30-43232320ee4b",
"c1fc86e2-415b-42ea-834e-dea28bfc8871"
]
}
}
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.