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": "63fcee0b-7073-4edc-a152-854eb606ff18",
"ParentId": "051a0c00-e999-48a0-b45d-3b4c5218557d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"37c4dedb-876e-4284-bdf2-335ed9422e0e",
"dd5e69f8-71a9-4db3-9bea-8a6d2e29543b"
],
"Companies": [
"d5aa444b-8e68-47e9-af1a-8fc36cb0e982",
"ebc50650-bb78-4904-b50b-eff853ac40d0"
],
"Groups": [
"1be1aa81-704e-45bd-ae7f-d22d45951ff2",
"a9ee08fb-440d-4a5b-bfcc-2aefe9092e6a"
],
"Opportunities": [
"3d80ca38-b9e9-4838-ac7a-5c880673178b",
"7acb383e-8ec8-447c-8c3f-73d52ffe1433"
]
}
}
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.