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": "03753325-f073-4893-9b08-f551801443a3", "ParentId": "7eee30d4-3486-4e63-87c0-951a8c4f7c7a", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "48be3920-6e3e-4259-9774-31d57804577a", "e2900eae-15f6-4675-b112-afe54cb65454" ], "Companies": [ "6fba474c-06bf-452d-873e-ee5778a4eb6a", "99d2664d-9957-42eb-891e-e91369ad5fdc" ], "Groups": [ "5c8fda68-6320-4bfd-b051-27c878f0dff0", "bd5c19e5-3b1f-478d-a8fd-8ee11edcd0a9" ], "Opportunities": [ "cac7f4b1-b0a4-4f0c-8407-49534fb6c24a", "0199792a-d233-4c5b-9c24-e971cb19c184" ] } }
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:
"eadb16e0-debe-4ce6-9192-f71e237284a5"