POST api/v1/table/{tableName}
Will create new {tableName} entity. Returns HTTP 423 if the request must be made through a converter. The returned list of fields are cached.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tableName |
Dynamic table name |
string |
Required |
Body Parameters
Dynamic table entity
PostDynamicTableEntityDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Secret |
Non sequential unique id of dynamic table entity |
string |
String length: inclusive between 0 and 30 |
| ExternalId |
Unique external id of dynamic table entity |
string |
String length: inclusive between 0 and 100 |
| Name |
Name of dynamic table entity |
string |
String length: inclusive between 0 and 250 |
Request Formats
application/json, text/json
{
"Secret": "sample string 1",
"ExternalId": "sample string 2",
"Name": "sample string 3"
}
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
ReadDynamicTableEntityDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Id of dynamic table entity |
integer |
None. |
| Secret |
Autogenerated unique id of dynamic table entity |
string |
String length: inclusive between 0 and 30 |
| Created |
Date and time of creation of dynamic table entity in database |
date |
None. |
| LastModified |
Date and time of last modification of dynamic table entity in database |
date |
None. |
| ExternalId |
Unique external id of dynamic table entity |
string |
String length: inclusive between 0 and 100 |
| Name |
Name of dynamic table entity |
string |
String length: inclusive between 0 and 250 |
Response Formats
application/json, text/json
{
"Id": 1,
"Secret": "sample string 2",
"Created": "2025-11-26T20:19:34.9264308+01:00",
"LastModified": "2025-11-26T20:19:34.9264308+01:00",
"ExternalId": "sample string 5",
"Name": "sample string 6"
}