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": "39a9c0f4-88e6-4a38-a470-b7645e761d04",
"ParentId": "1b650e8d-2693-463b-aafc-9441ca5f2bbd",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b4c0dc98-d57c-4b0c-859e-6a1de36fa147",
"30654ecc-7c55-417c-8db4-b466247bdb6e"
],
"Companies": [
"ed345739-c7a3-4208-9567-5c15c266d36c",
"c4336cb3-cee2-4a0a-b867-ec943f0eaf83"
],
"Groups": [
"e114a4f9-6656-4815-97b7-b96572eb66cf",
"deaf06e9-c354-4568-860c-339e49bb4306"
],
"Opportunities": [
"ef3cb328-b3cb-4a07-85e8-6d09e3a7e7a7",
"84d33eab-93d9-4c4d-bc12-8cc1888cc630"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.