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": "35513b53-4db3-495d-b1cb-312013088198",
"ParentId": "e76914f7-7b64-4502-b68a-250fcb986b67",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ce2f8a71-2c71-454a-8202-6a9c94f4bc7b",
"af4865cf-0c40-49ec-9932-20117c78a380"
],
"Companies": [
"39711b3a-bd4b-4a19-a950-630feed2ebf1",
"9d8d76a1-759e-4730-8860-d61d56262c35"
],
"Groups": [
"0400c49a-30ee-4ca2-b481-b0883e8117df",
"bfa63c71-57f6-480a-a1bd-2b3c32aa9230"
],
"Opportunities": [
"efe0517d-aa11-4c6f-acd7-48d772da111f",
"93b7e095-d2de-4cdb-9fc7-5fe4d0c48524"
]
}
}
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.