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": "3a60ce11-f619-4671-acf8-b711a883dd50",
"ParentId": "2ccb72ac-f052-4657-9fc7-1ce1509b1116",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"148b441a-94b5-44fa-bb7d-acc8739e94d9",
"7a0a1bda-249a-4465-bb20-660f6ce198c0"
],
"Companies": [
"b1dffaa6-da2a-4ca8-9ff8-f3a0472a81f0",
"cbacdcc6-b18a-4579-b4d9-2edaa1bbcb7e"
],
"Groups": [
"ca6c6edf-1124-4704-bc0e-905ab713ebee",
"98da3fde-da73-4571-bf8d-6ff169233bf2"
],
"Opportunities": [
"72343610-1c3b-4022-be0a-f321ca00c2f5",
"b2a48918-ff3c-4d72-83da-1aa2e6d19668"
]
}
}
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.