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": "69fa1cfc-377c-4bc4-bdfd-2a8de96f83ec",
"ParentId": "585f010e-f775-4802-a31c-fc82c6e42a88",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a523be1d-2df3-4963-93dc-7376668ca02d",
"f17db925-0db2-47bb-af56-a2b948b8afb0"
],
"Companies": [
"441285b0-2b29-4d57-ada6-16825d3560ac",
"9191f92c-aee7-407d-8f9f-7b235cf119a1"
],
"Groups": [
"56126921-17ed-4880-bdd4-42ffd43799ac",
"741ab36c-5b18-4f9e-be6e-5991d455c4e5"
],
"Opportunities": [
"d52c1259-4ee6-4a6d-b846-7bc0d6570ff2",
"92b09136-073d-4b26-88c9-c2c9da073f0d"
]
}
}
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.