GET api/v1/table/{tableName}?lastId={lastId}&take={take}
Will return {tableName} entities with id higher than provided lastId up to limit
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
tableName |
Dynamic table name |
string |
Required |
lastId |
Last {tableName} entity id |
integer |
Required |
take |
Number of dynamic table entities to return. Max is the default value |
integer |
Default value is 1000 |
Body Parameters
None.
Response Information
Resource Description
Collection of ReadDynamicTableEntityDtoName | 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
Sample:
[ { "Id": 1, "Secret": "sample string 2", "Created": "2024-11-21T06:36:25.7312518+00:00", "LastModified": "2024-11-21T06:36:25.7312518+00:00", "ExternalId": "sample string 5", "Name": "sample string 6" }, { "Id": 1, "Secret": "sample string 2", "Created": "2024-11-21T06:36:25.7312518+00:00", "LastModified": "2024-11-21T06:36:25.7312518+00:00", "ExternalId": "sample string 5", "Name": "sample string 6" } ]