PUT api/CustomTables/{id}?tableName={tableName}
Fully updates an existing Custom Table Record.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Id of the record |
globally unique identifier |
Required |
| tableName |
Custom table name |
string |
Required |
Body Parameters
The 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": "64d4c1ad-742c-4381-a8b4-bd45fe3e4f62",
"ParentId": "7e34293b-2a40-4dd3-a5ea-92f8521ee75d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"5b5247b2-0921-4bde-a97e-54e6cb813351",
"5ddf6f40-a968-48c8-a40f-315402306214"
],
"Companies": [
"34a369e3-22a9-45ae-9ec3-86e909563fd9",
"526c573c-6502-46a7-92fd-46792e7c777c"
],
"Groups": [
"2d4d5dbc-3105-446d-a5bc-298e1c697db0",
"84cf4715-eccc-4908-b689-12fecb93ff58"
],
"Opportunities": [
"fa43b30c-eac3-4791-a24f-db0c272fb7cd",
"0896fb46-6e81-4a65-ba6f-769412bc9ad1"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.