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": "e0de1ffa-ef12-4577-9009-0d04a859e528",
"ParentId": "a3c44b5f-3a94-4a97-9e48-fefc2d17d86c",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"bdb2ae9c-22ab-410b-859f-cea45ccdd159",
"b6ab1ef9-62ee-4fd7-9b92-f8b75feb4856"
],
"Companies": [
"84d67cb1-1f5e-47b2-9857-31aed0eaa935",
"46215ff7-2dd9-4876-89b5-0a56b4bad8de"
],
"Groups": [
"21cb9869-6baa-4571-b801-6f661c9d68a7",
"12c8b3e0-040d-4895-80ac-ad47f5612552"
],
"Opportunities": [
"3ec2cbc8-3e2a-4c78-8b27-9ae94b1c89aa",
"31de5db8-1d8d-4958-b83b-2b56234ba3ed"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.