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": "3f053019-406a-49f6-be9e-338dc00c3c76",
"ParentId": "5bd9e22f-d313-4a18-be2e-abe174ea1965",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a5e0571d-b878-4fbb-a8bf-f8f50e0158c3",
"a0e4039e-8f0a-4bab-87c7-7fb32012d2ed"
],
"Companies": [
"8641742c-b227-4783-8068-8a0975a1279d",
"8facbd96-c596-4181-afaf-06cb06ea1400"
],
"Groups": [
"d708c2eb-debc-4765-b7e3-646b5e817e1d",
"314c66ac-dbc3-4497-a99b-263d4fab8b0c"
],
"Opportunities": [
"3cf3d92d-2810-4146-bfed-551136190611",
"71d484fa-8876-4ed9-9327-7eab92483907"
]
}
}
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.