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": "90244976-f8ee-405a-a992-b817508b8a7c",
"ParentId": "829c5f1f-7dda-4637-9d21-d3c5cee73294",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"e29718c9-9b55-4b30-bfbf-ff33431d290e",
"ea8bba96-123b-427f-931d-7cc1c24fb9be"
],
"Companies": [
"eeced10d-8572-471b-b302-f1b00dd98631",
"ade216ab-a219-4c24-a5b1-2b2bed55aeeb"
],
"Groups": [
"16bc5889-c6d8-4efd-b8d9-ec6d1725f094",
"aa009474-dcba-4580-a03f-f35291a94a9e"
],
"Opportunities": [
"3750c4c5-b126-41b6-9286-7d52063bda27",
"a7462073-30d4-4e94-ba34-85338c31778c"
]
}
}
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.