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": "fe236bcc-fe10-49ad-946f-c958b5d53fba",
"ParentId": "b74b4b56-0082-4226-8563-0502bb62c62a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b73ac5b7-fdba-4cb0-937d-f44635a92517",
"277e855d-6400-49c7-be7c-896b367fd901"
],
"Companies": [
"7a56cc08-21b7-4050-b4e5-4e77ddfb08ad",
"358cf331-7fb6-4962-8e74-d044b7d313eb"
],
"Groups": [
"70674ba6-3661-4d94-91bf-e05a46bcab9f",
"00bce046-0e89-4ff5-8c1b-faec4577d5e5"
],
"Opportunities": [
"646911ab-b64e-444e-af88-69b6f3758252",
"106792cf-ddc3-4444-8c8b-3eb0a654bbe2"
]
}
}
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.