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": "d06c3dd7-f541-4ee1-bf4c-32d9a9c725b7",
"ParentId": "257a0d50-e185-434d-afda-fa172429543f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"29d44e8f-d95b-4585-aa9c-063e37f9d259",
"4d853c8c-6670-445d-a9c9-d5d823d25b7e"
],
"Companies": [
"980ffefe-ad89-45e9-a024-753a3d8c67cc",
"2673fe6c-d14f-4e66-b6fe-6c3a0d565bf6"
],
"Groups": [
"7763c236-7de1-463f-8a35-265f3066de68",
"d4702074-5ac7-4bf3-a94c-461888564e6e"
],
"Opportunities": [
"79ff85c8-bb27-444d-a232-0114c4c69fcd",
"1653e496-0943-4462-8906-2923975a407b"
]
}
}
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.