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": "57127c02-9f4e-407f-a1f8-9d46269d1d34",
"ParentId": "c45de9a4-4f4f-4008-9ea1-1ff3696d4ded",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"80d20fd3-563f-42a9-8995-ee6812f7e347",
"421545bf-f601-43cd-9fd1-c17020a97050"
],
"Companies": [
"3c42d8da-c955-4942-8f8e-514dfc5aa7dc",
"d2e65835-d7a3-4bc1-af46-9e97b5617158"
],
"Groups": [
"efdc83b8-82dc-4c1e-b64d-1c4f8c64088f",
"1a2fda58-b1e9-42b4-a30b-28ae723d5ebc"
],
"Opportunities": [
"f71b1ee9-c189-492b-a6ae-cdaa6589ac3b",
"a94b710d-afc1-4b2e-8a73-d35b895bf020"
]
}
}
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.