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": "f2d1f6f9-8939-4fc7-b1fb-ba7684626b29",
"ParentId": "2f31a0fd-7cd0-4e93-8dbc-ee7ae267ba03",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"dabb1f5f-704e-43c0-86d3-e80e58aa684d",
"5c9d2d8e-78ea-47ad-a0f0-27420ef78e50"
],
"Companies": [
"51a87980-95a1-48eb-a591-d8301d599c2c",
"55679e79-9519-4ed0-818d-a18590d2baf5"
],
"Groups": [
"92ed6316-3def-4edb-899a-8351d365b007",
"8a034095-c053-402b-861d-620099b6167e"
],
"Opportunities": [
"41ba08d0-0ae1-4ea7-a4b6-9aef60621b32",
"cacca48c-5bd4-45d3-983f-515680987a4f"
]
}
}
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.