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": "e745136a-1f25-4f8b-8492-6b5f2d26f521",
"ParentId": "002ded33-351c-491c-a1e9-03b96c070912",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f2a3b007-7947-48a6-a60f-49faad772875",
"2e373329-0478-44c1-a76c-28ded4dd8e68"
],
"Companies": [
"aacc94f3-0058-46b0-9fe2-5ac4f29371d5",
"76bec4d0-c5f3-488c-bc14-dbf164907768"
],
"Groups": [
"501e9961-0270-48dd-9ff1-b7beb6367840",
"81b8b2f5-8a50-4661-b4e3-e6a32978db8d"
],
"Opportunities": [
"08b80285-8edd-42f6-91d6-a3c03bacac28",
"496da92e-63ff-433c-acc4-1e1f9a0113ff"
]
}
}
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.