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": "4f8a671f-6391-4556-b506-bcbc07f2d3b9",
"ParentId": "7e942e15-f016-4647-95e6-8eab8b9f78ec",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"fe2768c1-3cc5-4ae7-806a-d22cab51be28",
"bdb76694-614f-42d9-aa14-b121e50b0f54"
],
"Companies": [
"41503e12-20c7-43f9-9d17-87aa8ecb31b0",
"e64f6a4c-717d-4ed0-a9ab-ad9bf67477ae"
],
"Groups": [
"bc9e1dcd-90c7-4243-b838-aa2670304c66",
"70125666-eac5-4bbd-b75c-e877eebef07f"
],
"Opportunities": [
"0a668e9e-3ceb-4078-9806-ff390ba6925e",
"4d366d0a-2e33-4a33-b4e0-48c437373706"
]
}
}
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.