POST api/v1/table/{tableName}/Bulk
Will create new {tableName} entities. Returns HTTP 423 if the request must be made through a converter.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tableName |
Dynamic table name |
string |
Required |
Body Parameters
Dynamic table entities
Collection of 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
Sample:
[
{
"Secret": "sample string 1",
"ExternalId": "sample string 2",
"Name": "sample string 3"
},
{
"Secret": "sample string 1",
"ExternalId": "sample string 2",
"Name": "sample string 3"
}
]
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.