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": "c76a7e03-f5a8-40a2-b57c-3ba86800efd5",
"ParentId": "a973ffbe-4833-4a8f-8826-da5d6e729277",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"6152abf4-5ce8-4cad-b422-25fb88d2c3d9",
"fdc2d7db-9a25-49a3-a261-a10a9138e4d4"
],
"Companies": [
"c7ce1ba9-d820-42a4-9284-b3b8f9716a3e",
"7ef33d8f-f2a6-4698-a13c-8c6450888a2d"
],
"Groups": [
"c3c23e12-eeb2-48ce-9b31-79124ea47f7e",
"f98b536d-6bee-44f3-8d10-7e83acdcb520"
],
"Opportunities": [
"712f9aca-7e9b-4b44-a7c5-4a40e1fe3e68",
"fda6775e-d837-4704-9eb2-7d22fd8f7355"
]
}
}
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.