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": "92db5feb-00bf-4f4b-aeaa-b030dfcfea6f",
"ParentId": "facb5920-bcd4-44ae-b385-178483f14cad",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3d930c29-7208-4877-bf61-2c51c697572c",
"0c4e335f-c9f0-4ba4-9a5a-fce2002da568"
],
"Companies": [
"9e996781-503c-486d-b39b-98c0002fcf4f",
"35b4647b-2814-4855-8e21-4424fa48d9a3"
],
"Groups": [
"20cede0b-8d69-42e2-8ee0-58a69d67a381",
"58f62e5c-ec75-4427-a00e-2a1698908e1f"
],
"Opportunities": [
"f1fc35fa-e530-46b6-ab03-37d67db05bd1",
"a9cf06dd-2351-4cc0-b63d-c221f1c1591b"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.