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": "2b4e5fdb-953c-4936-a47d-f1eb4cc0d656",
"ParentId": "7aeae5ef-5e96-4a35-8241-21bfe860d8e6",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3682c555-9686-49df-a28d-419580aa471a",
"0c542ba5-c72b-4721-8d2b-932dbc570e94"
],
"Companies": [
"6ff9f0d5-988a-4c3c-9087-a055ea52aa67",
"a6e6c270-dd11-4714-b7bc-715a36515f65"
],
"Groups": [
"221577ff-d19a-4354-b4d6-40e196df17da",
"c62c1231-69c1-4272-b92e-154dafcde671"
],
"Opportunities": [
"b93f5090-8c94-429f-9576-6ff8847de719",
"4b539200-bfe4-47ef-9e9d-6a128f3523af"
]
}
}
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.