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": "de4278ff-bb8d-4d9e-a54a-a8c68d5a9436",
"ParentId": "0adc76d1-a12d-4d0e-a2ad-2c964d653d7d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"c10591ca-9063-4737-905c-f2245ebd6f80",
"fe92b5d5-81a7-4408-a925-e0d7b38371a1"
],
"Companies": [
"5d7ee4f2-25bd-409d-84a5-53db0838bf39",
"9a576278-f359-4ae8-b197-c4f2566d6627"
],
"Groups": [
"457bb3a0-8d51-4fea-8e3e-53e4e734ec92",
"72cd53a7-2e13-493c-830f-6759c31443ac"
],
"Opportunities": [
"48dac390-f48d-42fd-99e6-4a4db4eb5311",
"00e9610b-8098-4c13-be12-0ce06834b88b"
]
}
}
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.