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": "71396c21-4396-48cf-8641-b6db4aaf6b8b",
"ParentId": "56c90ac2-9264-43fa-9b36-157c0151b5d2",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"36d26bdf-f1bc-4f88-b884-ef81e3f0b6e8",
"d0b5d8c1-5e70-4118-bde5-8d454858d2f6"
],
"Companies": [
"40ff1596-efdd-4879-9257-242a7169be09",
"b2f522bb-12a4-44e6-b5f5-3deea596afb1"
],
"Groups": [
"0e225115-24ea-48cb-963c-d79dc88f424c",
"48dfee88-fdc0-4147-8661-22618a5257a6"
],
"Opportunities": [
"a37a3ea9-88a6-4d26-b768-4c6ec97ab6e4",
"96b14813-7603-43cb-9b41-3341cdc7b860"
]
}
}
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.