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": "f014a430-c03f-4364-b1b6-83f0ea0fffff",
"ParentId": "c48c9173-95da-49b0-9180-3587f26b0250",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"e46c053b-7174-49dd-a792-c2edfaeb9c09",
"0a4fea50-096c-4dcf-a4ff-4723602b967f"
],
"Companies": [
"c5dbf89f-2cff-4e4a-98ff-48a88e69c0ad",
"f8f5ab11-b80f-48ff-9d52-3dc04c9338b9"
],
"Groups": [
"cb91ba62-eaed-4949-9556-034db5b80164",
"3af4e6c9-49a5-4f79-9042-3b5841591647"
],
"Opportunities": [
"e3c30f38-6994-4326-acf4-98bdd9ea02a1",
"0005585f-2ba8-4b8b-a685-dc26508bbaf4"
]
}
}
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.