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": "5db26df6-eeb4-41d2-a6ea-08ef981297e5",
"ParentId": "704197b6-ce32-48bd-8f51-754b7918df82",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"0bb367d0-0b57-4e37-adf5-933caa50e165",
"bd2f44e1-e476-4186-ae1f-64d47370291b"
],
"Companies": [
"ab725176-7083-46e8-954b-1f3914ae01e5",
"61e35f42-95e3-426c-93b2-04cff6d1edd9"
],
"Groups": [
"ae086e97-9ace-4e52-8c63-55bd53cb874d",
"a27db9ae-5179-433e-92b6-3fee8bceee6b"
],
"Opportunities": [
"3e0f8c90-8f24-42b4-b43d-1081b98fd56c",
"20c0ee6b-72a4-4d79-a82a-3cb8ace5eb27"
]
}
}
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.