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": "b041ee4c-2e19-4cea-a8b6-804001a1dd28",
"ParentId": "3ea35d95-bff5-409f-a7b5-7521e23bbfa3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"5908cf90-cc93-4d93-978f-d4f26019bc1c",
"7fc145cb-9a6e-4b61-9ee5-7cdc946cc8cd"
],
"Companies": [
"66e393b0-e4ac-4bdf-b501-4fe73fbea983",
"7f323ec9-5e92-42da-b6b1-59567cb5a308"
],
"Groups": [
"9b0d7d69-91ec-4958-91d2-4262eb3c6de2",
"9b5b26ab-c52d-446f-a229-6727855b019a"
],
"Opportunities": [
"259cf2e9-7df7-41ad-abd2-fb1b65a24720",
"c219d3aa-88d5-40ed-8130-ac688e2f5b00"
]
}
}
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.