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": "34b3e170-4319-42b4-ad53-b584994ceed9", "ParentId": "d33ff5a7-d170-49f0-9863-7ecdab52dc37", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "6b54962f-b6f5-4976-b368-10b2648c05ab", "d9b4161a-7935-4773-8ca8-bb97d6d15368" ], "Companies": [ "a3ee5732-b6de-4d4b-9142-a116784ed577", "3062437d-c720-4afc-a9b4-485426d94765" ], "Groups": [ "d0dc263f-5323-4300-aa31-9c6b0498e5e5", "6ae18b87-d206-4068-9435-08669ef710ab" ], "Opportunities": [ "aa0bdfa8-f416-40d7-b836-47bd19fbbd2b", "ad3cba61-85db-4e51-89eb-ded1422a8c63" ] } }
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:
"dc91e6b3-5b08-4f3a-b766-5168cc2b0c52"