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": "eb0b048e-1438-4c07-8d0b-42354ec49912",
"ParentId": "7f22d033-678b-468d-a564-8105767e81bc",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"73c16b33-d777-4f3b-b7a2-ef3f03953a32",
"d08f4601-f003-4fcb-8a52-f1b6befe2a7e"
],
"Companies": [
"c50ae55c-4280-439e-96dd-2394a9905012",
"8bcad594-9e9f-4d0c-b27f-e66a47f7d5cb"
],
"Groups": [
"4ce7b79f-fd1a-47f1-8618-dca2a5a3777f",
"30cb4032-bd13-4806-8603-35f4130d85b3"
],
"Opportunities": [
"7972844c-df44-4a10-8dfc-87b7f06f378c",
"c3e815b9-9714-4617-a365-ea59ccb8f56f"
]
}
}
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.