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": "a6aaf888-7be2-4bdd-86a7-db5a229a0e29",
"ParentId": "9d17b03a-878d-487e-818f-ae5919ab767c",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"25e66608-5e87-4163-b600-8da9c7da0cf1",
"ae2c574a-6248-4db7-9eb7-c2d3e71a32cd"
],
"Companies": [
"0ec096ec-7632-4626-87bd-01f087293a73",
"e6cbd532-c9e9-4fc4-97b9-66dc1dcc1f25"
],
"Groups": [
"89356fbf-d3d7-49bb-9d3c-533fcd801ffa",
"ff7adcdc-c5b4-42a7-8ea1-4d84a41ae47d"
],
"Opportunities": [
"23d9e5bd-6548-49be-8c77-c122f0a4a369",
"b5d2a11d-48d8-4aad-99d6-180aaaa7eb00"
]
}
}
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.