POST api/CustomTables?tableName={tableName}
Creates a new Custom Table Record.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tableName | 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": "df04022e-53af-4e1e-b935-40b97187a6c3",
"ParentId": "c2ea659b-8064-4525-8f99-38886c57a310",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f4841387-7c1e-43f6-8ba5-e87e32a23950",
"3bb392f3-d985-49d7-8cea-d75d4ae8e968"
],
"Companies": [
"4088e376-3e85-4fd4-9385-5be704edf14b",
"47c246c5-4576-4ca0-899f-9abe5f29ae4f"
],
"Groups": [
"b895a07f-3edd-46e8-a730-da498ad8795c",
"7b320afe-1650-4656-ac63-6ff4f996ad7d"
],
"Opportunities": [
"32f9dbd8-c21f-4a4c-93c8-9ac6ef96a131",
"b8672f1e-a957-472e-b81b-d1e81ebaaab0"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
On successful record creation, returns the record GUID
globally unique identifierResponse Formats
application/json, text/json
Sample:
"ee411592-b33f-4855-bb10-15bcefe9e81c"