Welcome
The Juo Admin API provides programmatic access to manage subscription resources. This RESTful API allows administrators to interact with subscriptions, customers, and other Juo entities.Authentication
All API requests must include an API key in theX-Juo-Admin-Api-Key
header. Tokens can be generated in the Juo admin interface. Keep your API keys secure and never share them.
Pagination
The API uses cursor-based pagination to handle large result sets. Navigation links are provided in theLink
response header, containing URLs for the next and previous pages.
limit
query parameter where applicable:
Sorting
Results can be sorted using thesort
query parameter. Multiple sort criteria can be combined using commas.
Sortable fields are the same as the filterable fields on a resource, there is a special rank
field that can be always used whenever search query includes a term not bound to a specific field.
Search query language
Resources can be searched / filtered by an expressive query syntax. The search grammar is expressed in EBNF. It uses the following terminal symbols:Symbol | Description |
---|---|
_ | Optional whitespace |
__ | Mandatory whitespace |
field | An identifier ([a-z][a-zA-Z]* ) |
value | An identifier, single quoted string or double quoted string |
Operator | Description |
---|---|
: | Equal |
:> | Greater than |
:>= | Greater than or equal |
:< | Less than |
:<= | Less than or equal |