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": "490b3ffb-9b4e-4e98-8714-868f242f15fe", "ParentId": "2936389a-0e99-4e41-a8f7-926771f0735d", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "577586cf-5737-4229-8f97-bd461fd02ad4", "606ca862-b526-4e2f-a024-0c564aaa1f32" ], "Companies": [ "f8d70b7a-cf03-4813-9111-df92920a8735", "9d9c2d11-6052-4e9c-92b2-40e77d6727e0" ], "Groups": [ "70d1b291-c792-45b3-8290-264e84721aaf", "b3c2f381-3845-48c1-9383-b91f86a9fba2" ], "Opportunities": [ "d5f61c0f-848e-470a-a014-dc97f597e37d", "fbec4018-7c1f-4ccd-8492-92668f3f06d4" ] } }
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:
"741f4572-05ee-480f-ba78-0a2180256d23"