GET
/
api
/
v1
/
query
/
template
curl --request GET \
  --url https://your-engine-url/api/v1/query/template \
  --header 'Authorization: <api-key>'
{
  "query_templates": [
    {
      "id": 123,
      "name": "<string>",
      "query": "<string>",
      "parameters": [],
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Enter: 'Bearer <JWT>', where JWT is the access token. Example: Bearer access_token_comes_here

Query Parameters

offset
integer
default:0
limit
integer
default:100
order_by
string
default:recent

Response

200
application/json
Successful Response
query_templates
object[]
required