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": "eeb0b50f-3e62-4fe8-841b-c29486bda541", "ParentId": "89dd8477-9cf0-4cd5-aa6d-8f902b1af843", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "4d6d6b0f-2074-4c4f-99c5-4f66ccd2cdcb", "1e21a16a-7259-47ab-beee-47de22bf9a19" ], "Companies": [ "750a0819-6af2-406a-8d13-d92d63d568fa", "e1715fc3-48ec-41aa-bd8d-4471e4d1a624" ], "Groups": [ "2840dd04-50a6-4a37-8319-aabba3f540ae", "af9edc2a-3520-415e-948c-3a8f500c0f6a" ], "Opportunities": [ "2ea9ec48-4a2a-4a63-b192-bc51e768629f", "91a2c367-3b5d-46ed-873a-9a6ea39e75ee" ] } }
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:
"91cfc47c-ff37-43b1-bc7f-04f1ef6b279f"