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": "b6df6d68-6ade-490a-b05a-e1e8ed354ffa",
"ParentId": "8024af52-b520-4cf0-9e3f-3d71bf784221",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"61b3dea6-9b1b-4d6b-8fd4-02f4af037816",
"b23a3cda-e098-4aef-905e-905a197f21ce"
],
"Companies": [
"554990cb-b7ae-4de7-86f1-46b7324ffc61",
"b175128d-fb25-4150-9ea1-adc1f1540721"
],
"Groups": [
"f6f741a4-487a-41f8-8e55-e86db052ec2f",
"fdb11eca-51ca-4f3e-88a1-c614ac686952"
],
"Opportunities": [
"4ef217f9-4183-465d-b805-49a6e40e7c30",
"ca3b39d9-fa03-4c36-883e-35cd37b203cf"
]
}
}
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.