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": "c71d6170-a4fb-4898-99cf-3e35067fefd8", "ParentId": "a92f4eaa-3ad8-4cd5-a516-92766b9926af", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "78758d66-bbfa-4875-abbd-97a4be32a41d", "9d050573-91c7-4179-a5ea-f0aefc8c68a6" ], "Companies": [ "3a9772de-2d14-4d9f-b968-c93b4fcb0c68", "373ed0f2-6b30-4703-9d22-b7208fb8eb76" ], "Groups": [ "cc788d73-93a3-4c3b-b6de-be14b21183cd", "fab234fe-3fea-4f83-9285-4d3ac2caee28" ], "Opportunities": [ "7e53ecdb-d359-41b4-9d80-944972048d3a", "848aa66a-0e50-4e19-ab69-2fe39d4553bf" ] } }
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:
"9f351d37-f4c0-436a-9804-904783d2c3e7"