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": "7be8256a-ab5d-410f-959f-9c7976de9bbd",
"ParentId": "2fda2a2b-7161-4b62-a839-809f558677f6",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ac03aa5f-82ab-4625-afb5-de27bad05bbd",
"a4408009-350f-4ea8-af69-6468efe7f061"
],
"Companies": [
"44e8ff22-68db-4516-bc07-bf78143e93f6",
"179b8181-68cf-4f96-b41c-26abf276c907"
],
"Groups": [
"587348a2-f127-402b-a14a-95da4da217fb",
"dd6439f5-20c0-40f7-b0b7-2c6c2d68d9c1"
],
"Opportunities": [
"7954d59d-3bf7-4c1f-b76c-7e9def621ae4",
"57a69a28-27a9-4055-84cd-767afb798c9e"
]
}
}
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.