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": "5068c8bd-7039-44c1-b695-e6f6a97d151a", "ParentId": "f5565a66-7456-40ec-87f8-e7cdbed7b195", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "cdda2088-210e-40ef-9ff0-016f440eae92", "9a5c741f-d4cc-4420-a129-6f627906f081" ], "Companies": [ "198694e1-6e8b-45b7-88bb-08d38a7ae023", "a0c6309d-7638-439e-88f4-9d8d1ab23ad5" ], "Groups": [ "c90a252f-ca19-4a32-b0f8-5486ab4adb72", "1271842c-9957-4f25-9086-8112f647ca63" ], "Opportunities": [ "077cf1f3-4804-4e04-a16c-dd50913f9b60", "e0b7dc6b-b20a-4912-b712-0449abf1ebbc" ] } }
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:
"92d362b1-7387-4bf3-8254-7854c9c2014d"