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": "fa6d6a6d-cd01-4711-aa82-880c129e153d",
"ParentId": "7315a575-bd37-43a8-a5a4-f04a83008a8e",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"7a61840b-f3f2-40a8-aed1-7b8e05d4b516",
"d6798e29-5ae6-4d35-afd5-10c6e815b602"
],
"Companies": [
"27e06063-1c45-4e2c-a666-463adb17934e",
"7264c34d-eaf8-4c01-bffe-165a86ebbd56"
],
"Groups": [
"eaa6ffa4-ae87-4521-acdd-97ad99d3aaff",
"7cda7787-9a76-4783-bc93-82025cef352b"
],
"Opportunities": [
"ea958ab9-f461-491a-987e-b142467f4caf",
"991af164-480a-4435-9558-ab4ab72599c3"
]
}
}
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.