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": "97ed312b-67f3-4282-9837-c7fc22fcd16b",
"ParentId": "aba183ca-a94b-449b-940a-dc104fd86a15",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f0c6cce0-4708-48e4-9007-91a7fd3a2fe5",
"6718b60e-54fa-476c-9c36-47b4b57b29b2"
],
"Companies": [
"1ca75e25-f577-4a39-b195-673fb0601521",
"d1d02c15-28c8-4d67-8730-02b0784b9d00"
],
"Groups": [
"0bda2007-db56-44ed-8d93-74e12be469da",
"2c2d6121-8690-4f8e-b508-27de6b49017b"
],
"Opportunities": [
"8759b1c8-de78-4455-8746-3fcc3519a3bf",
"0c6a35a5-7509-42d1-9bbc-944b96b52170"
]
}
}
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.