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
MutableEntityExtendedName | 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": "b718b804-26e2-4c23-9d9a-582c5ed467f3", "ParentId": "29845637-8795-4739-9424-7fa6880fece4", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "1cbb7b96-9b10-43a8-86a3-adcb8fca6476", "807df61b-208c-4b7a-b1b2-7871ab2c2655" ], "Companies": [ "c1a80406-9309-443b-aaf0-794ac9efc66e", "b9db6b68-f6df-488a-b9ea-6570cace1b9a" ], "Groups": [ "ec42d026-6e09-4707-a8b3-2997482b1272", "86cbe5c5-d0c1-4a7e-b11a-9b6acea93bf2" ], "Opportunities": [ "43e7d401-5306-48e3-9c9a-0e1f272cfa8c", "75ab4acb-6f27-466a-8a19-edd092d5bfc3" ] } }
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:
"19bb3743-30b0-402d-a2b7-8e0e40148942"