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": "25243420-26a4-4f02-942c-999c318ae1de",
"ParentId": "db58f2a1-7939-4f48-b43b-ce5ee256e101",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"df25bc4f-173d-4620-9b87-66718d686eca",
"d50429b8-22c8-4ed8-b81c-2b4f295fd54d"
],
"Companies": [
"64bbfcc3-b4cc-4337-973b-d0abb874ca31",
"9092affe-b39f-49be-8e5e-3b3a8c03028d"
],
"Groups": [
"7c907e5c-ec54-4a53-bc14-68787871a225",
"c7d7ca8d-0e82-4b86-8071-d5fba5317696"
],
"Opportunities": [
"237e4251-0d3b-4e20-b4f5-23bd3188312f",
"6e3519c7-40df-4392-a972-5562b809c734"
]
}
}
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.