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": "59224c6a-0046-47aa-adf6-c6df1960c63a",
"ParentId": "1f200e43-7a14-46ca-bedc-3aaafa6bd4e3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"39482a99-5ed0-48d0-b8f6-9e132b20c4db",
"1a3babb4-434a-4e77-b372-320f0e1bb694"
],
"Companies": [
"59d41771-d1df-48d3-8986-5096cf8878a4",
"a2bdd671-c244-48d5-877f-403fc0a8fac7"
],
"Groups": [
"59ae7f98-1ab6-43f7-91b6-a8d5a11a1ea1",
"a7c51606-368c-412f-aa98-3f1eaa6f488d"
],
"Opportunities": [
"eda62011-6ef5-4c81-b61a-d20d95a26029",
"860783a6-ebd8-4350-9de6-044bf5f78181"
]
}
}
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.