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": "2bafbb6c-51cc-4670-988d-6a12732c9f7e",
"ParentId": "6b64d338-dce3-4681-8898-d97ffa4d7064",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"55ecbbf8-81a4-43d5-809e-4a0532e3e13b",
"a590571a-365c-4cac-bad7-6c2859655205"
],
"Companies": [
"f241b400-9d3f-4a2a-bcaa-c7fbda2f85ce",
"304d0603-77a2-4ead-8a9a-66a0865e0630"
],
"Groups": [
"1d717f4e-80b3-4bf4-af72-961838324175",
"9cf9e162-0485-48d2-af11-590bcab551cf"
],
"Opportunities": [
"c1941219-786d-46da-8c18-1394655a0642",
"2353c5f8-2c1f-4268-a83a-827aa080f565"
]
}
}
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.