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": "2f6943c8-7f28-41ee-8231-783c1c6710f8", "ParentId": "eab74ac1-0ea1-45c0-8611-f33593555406", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "7208f99b-8463-4d38-9aa3-f70ac54bc777", "6e3e3927-d3ca-4bdc-a2c2-73709146ddda" ], "Companies": [ "b5631281-fbe6-4018-9e7e-680972faad04", "ad3c9649-0ff1-4caf-939b-4efd714cad0a" ], "Groups": [ "e9c07f2b-7469-4fb1-b224-60ececf66cd6", "a203461c-96a5-4516-84fa-e131d1a0fd11" ], "Opportunities": [ "87802584-132a-4670-910f-5c3b8cb2446b", "129edb14-21ce-4476-b225-6042c9e08323" ] } }
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:
"c8fed910-3db8-4f6d-9458-c26ff962c08c"