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": "a08a83be-bc89-4446-b40d-8bb55ea7d14f",
"ParentId": "423c3d05-7eee-4253-96eb-1f9e6f325e98",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"175c9a72-4c9b-454b-8e9d-ee8b61b90cf0",
"7aa25ae6-5211-4a55-9872-a943dd5a4b52"
],
"Companies": [
"05fe4b42-2cbf-489f-b914-6b738b9ae4a0",
"ec28a2aa-911c-46ec-816a-24768ef590c3"
],
"Groups": [
"8df88f52-ddba-4983-aaa2-f71c84d5dc2a",
"2462dcc4-6169-42e4-8288-a43b8a9fbb5d"
],
"Opportunities": [
"ce1a228a-6b85-4998-a8ff-8bd3dc85f704",
"8e7e6dd9-73cb-491b-856f-ebc9b2141acb"
]
}
}
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.