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": "6bbb6272-cd4f-45c1-a692-e97d9fd57155", "ParentId": "40944e4d-de2b-47b9-923a-cabff07851e3", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "3a7f84b0-f9e7-406c-850b-f796dd08a8a1", "6a3b81fb-29e7-4737-b4ce-cff131008b31" ], "Companies": [ "25d8c828-fad5-4c21-929b-ac623a1347ee", "7e4d0ddf-1306-47bd-acbd-e78c4e06b0d9" ], "Groups": [ "d16e12f8-878e-4c2a-8076-ccb47be19b2f", "4b8ad396-916f-4546-b252-ec741572a552" ], "Opportunities": [ "340577c8-5bcc-43f5-a7d2-626c9d0fbcc6", "31e396fa-9e04-4c96-9ff4-423a0fd72bc1" ] } }
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:
"033d8ce6-d627-430a-993e-51ef3744c06a"