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": "dccc049b-7b67-4802-8289-6e19a7f08ed7",
"ParentId": "7deeff09-4efd-4121-8f6b-da09156f0a93",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"fe763f9d-340c-4972-881c-93bc9beb8a41",
"85cc5387-9ab9-42df-b69b-a3ebf9ee9ea5"
],
"Companies": [
"ad9e3768-2262-4c29-9e1b-dc3cbf368308",
"94bc16fc-8868-4517-9a71-2e4388fe20cc"
],
"Groups": [
"438a7ece-5815-448d-936c-d5a6ed74dcd0",
"1d251667-a090-46a4-a2b0-535d64174622"
],
"Opportunities": [
"4233e183-78f1-4432-a13c-e35d9e293e0d",
"2f5529d6-9ce9-452a-8a27-3520094ceec9"
]
}
}
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.