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": "57d24139-35f3-4f10-93a4-12c0c465a12e",
"ParentId": "d3fd4d13-81e7-45a2-aa80-75f62eb4afed",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"aaf15d0e-7def-464f-98eb-76fec694d574",
"5556f1ef-eba9-4a0c-8eab-33493a3a6d5e"
],
"Companies": [
"3317f653-c5e9-4791-8cc3-21b1cdade3f1",
"296076aa-94d6-4b49-bc16-b7a0b54d687a"
],
"Groups": [
"6bd952db-a6af-442b-b894-2f9cfaa7e790",
"3b86b565-2f5e-44d0-b66a-edca9396878f"
],
"Opportunities": [
"b19cc86f-6915-4b4a-8b40-5d4f34f998f8",
"3d14ca06-526f-4cea-9240-98482e42a6dc"
]
}
}
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.