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": "615e805f-9b03-401a-bb27-d0c48c5a1b99",
"ParentId": "d0b0fb77-304d-4370-9980-06dc8797eb63",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"e2f9af4c-7fc8-4d51-b218-029459ab05ec",
"a02eead3-c5e4-4428-adbd-19dafb895466"
],
"Companies": [
"304f95d2-a6f4-4d41-ae04-3eca8bd7ccc6",
"1a8c73d8-2cb4-43d2-9090-6fb3cef5ed44"
],
"Groups": [
"771952f5-519e-41b2-905c-6a6f71618c8c",
"b9d74e4a-8cf3-4df1-a639-60794c6cf907"
],
"Opportunities": [
"afcd8f05-a004-46e1-b416-93c5db89b15c",
"0a4da67c-b055-4580-8f89-89f8dc1c221f"
]
}
}
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.