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": "9960ec8a-2f5a-4ac4-982b-acbe01c68eb6", "ParentId": "c4806de7-af1c-416e-a897-049fc23c43e6", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "3620f27e-1069-4de5-a271-acda5cbe028c", "05d7c676-6db3-4cf3-bf79-98c802b95435" ], "Companies": [ "dd44f6bc-d1e0-4808-beee-c0e9fb0982a9", "bcaf6860-872a-4070-8d7b-4f8e59b6a8a6" ], "Groups": [ "7771021a-9443-4030-b070-f16acd83258f", "16d2ed00-b428-4acc-8af1-8349a42c479f" ], "Opportunities": [ "98f4d5a9-d5bc-450f-a324-25e90524ed5f", "22f0611d-4fc2-41ed-b6c5-cf7f7f90460d" ] } }
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:
"1f8885c8-90db-4a3d-b686-55c39b761511"