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": "bb163378-37e6-48db-a3df-62aa747b283a",
"ParentId": "e02d0676-8b30-49fb-a341-ff1b823df56c",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"add00b7a-8d30-4b2f-a701-e08ff0c64b9f",
"b8c8f6ea-01e5-4dd6-a2ef-8e28381241c6"
],
"Companies": [
"a269609e-ce9d-4436-8771-f53227f23bfe",
"04c87407-15f4-4fd4-abcc-d7042ce98ba5"
],
"Groups": [
"201cea7c-fcab-45ec-a3a6-f88277fee39f",
"dc55eba1-c928-4d9d-8db6-d6d1260335de"
],
"Opportunities": [
"62dc9521-bee0-4ea8-8225-39ae0d24ffba",
"ecae693f-ffcf-4fca-92c9-aad693a78cee"
]
}
}
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.