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": "e6e1e530-2132-437e-a327-ee4e6b2deca7",
"ParentId": "b62ceaa0-7359-4e34-b81e-db73c906e173",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3a294cf8-0862-43a8-b583-6f8a79ab7c2a",
"cd3e3619-e31d-4ec0-84ab-a24da8e5c7c0"
],
"Companies": [
"c6000879-3947-4838-811e-c05eb505e982",
"8dce8203-e1d5-421a-bbee-5a331f0471d4"
],
"Groups": [
"78b301ea-f12b-4605-884f-55b9f466fa48",
"fb64e0da-d13b-452e-b7e6-484134823d97"
],
"Opportunities": [
"a4898087-f9e0-4e1d-8e7a-bdacdf101759",
"7a142085-3266-4997-9fe2-bc06873e0b4b"
]
}
}
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.