Skip to main content
GET
/
activeviam
/
pivot
/
rest
/
v9
/
database
/
data
/
tables
/
{tableName}
Execute a query on the database via GET method.
curl --request GET \
  --url http://localhost:9090/activeviam/pivot/rest/v9/database/data/tables/{tableName}
{
  "title": "Success",
  "description": "Success"
}

Path Parameters

tableName
string
required

Desired table name.

Query Parameters

branch
string

The branch on which to retrieve rows. Default is master branch.

epoch
integer<int64>
default:-1

The epoch on which to retrieve rows. Default is latest.

pageSize
integer<int32>
default:20

The maximum number of rows in the page. Default is 100.

page
integer<int32>
default:1

The page to return. First page (and default) is 1.

fields
string[]

The fields (columns) of the rows to retrieve, separated by commas. If not specified, all the fields are returned.

Response

200 - application/json

Query executed successfully.

epoch
integer<int64>
headers
object[]
pagination
object
rows
object[][]