listQueries
GET /v5/books/{bookId}/queries
GET
/v5/books/{bookId}/queries
List saved queries
Parameters
Path Parameters
bookId
required
string
The id of the book. Same bookId url param on Bkper
Responses
200
A QueryList response
object
items
List items
Array<object>
object
agentId
The id of agent that created the resource
string
createdAt
The creation timestamp, in milliseconds
string
id
The unique id that identifies the saved Query in the Book
string
query
The Query string to be executed
string
title
The title of the saved Query
string
updatedAt
The last update timestamp, in milliseconds
string
Example
{ "agentId": "string", "createdAt": "1592000000000", "id": "string", "query": "string", "title": "string", "updatedAt": "1592000000000"}Example
{ "items": [ { "agentId": "string", "createdAt": "1592000000000", "id": "string", "query": "string", "title": "string", "updatedAt": "1592000000000" } ]}