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": "84e4f12d-3a3a-4a93-99cf-76e4faa844b7",
"ParentId": "c3f9ca58-c1b9-430c-a001-5b460b649fd9",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f87050ea-0d84-4634-a847-1345885732c6",
"b7458837-35ac-47f0-9c0c-f7a35c112e11"
],
"Companies": [
"da320649-5ddb-4047-9315-1191675c1bf9",
"6aba270c-229d-4d42-b32a-0866562b37ce"
],
"Groups": [
"3b461bb2-9d80-4acd-a7b8-563918dd2d5a",
"ac4ee3b6-f68b-4c98-bb99-cfeb269a45ac"
],
"Opportunities": [
"e6b3701f-27d8-406f-be10-aaf62d4c192e",
"c04ab253-ea35-4efd-8383-55a7fe8a64ec"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.