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": "0f43b34e-a1d3-455c-ab02-ebff0338c02a",
"ParentId": "ca318e7c-4f0c-4062-9d2c-20c0e7bb201e",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"0e8155ec-e225-450d-84b3-a3a58f753e13",
"e57104cb-0438-4bfd-b0fd-c9b938ebc157"
],
"Companies": [
"9aabbc64-9a1d-40aa-ad35-35f4d43a6cef",
"c952176f-aaa2-4861-b6e2-f85a8343c862"
],
"Groups": [
"d2ed9f92-a48f-4006-8447-c9fe614cee31",
"904766a4-a654-40cb-bf7a-12e46a114344"
],
"Opportunities": [
"cc4c3c97-a6a4-4fbe-be39-c25d64d5f731",
"3b460078-6d74-4441-822a-a1b7df6ba76c"
]
}
}
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.