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 PostDynamicTableEntityDtoName | 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
Collection of BulkImportItemStatusName | Description | Type | Additional information |
---|---|---|---|
Reaction | string |
None. |
|
Id | integer |
None. |
|
MatchValue | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Reaction": "sample string 1", "Id": 2, "MatchValue": "sample string 3" }, { "Reaction": "sample string 1", "Id": 2, "MatchValue": "sample string 3" } ]