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": "ff4151c9-d0bf-46f0-bd7d-33e154866ce7",
"ParentId": "bf2ce8ee-d322-4aa0-af16-729f8a7e9aab",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a64aab85-2ffd-475b-95fb-6dd112143daa",
"5aefc08a-6556-421b-8331-7a31f11fe917"
],
"Companies": [
"5d9fb666-9522-4917-92f0-a5013c134dac",
"d558eebf-0242-420e-aea7-36b64e4dc662"
],
"Groups": [
"b17a8ec6-19ca-4c75-8682-27882adfa52c",
"166de300-9753-4ae5-8384-be72d7bb72b5"
],
"Opportunities": [
"2b339601-998b-4b89-9eb5-017a97bd10eb",
"e7cb25e9-49e0-4da2-842d-a1be0d1faacd"
]
}
}
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.