1. Statuses
Printags Public
  • Accounts
    • Get current account
      GET
    • Get an account by ID
      GET
  • Orders
    • Find orders
      GET
    • Get an order by ID
      GET
    • Create a new order
      POST
    • Validate an order
      POST
  • Files
    • Upload a file
      POST
    • Get a file by ID
      GET
  • Statuses
    • Get all statuses
      GET
  • Schemas
    • Account
    • Address
    • Customer
    • Model
    • Product
    • ProductGroup
    • SubscriptionPlan
    • Shipping
    • Order
    • NFC
  1. Statuses

Get all statuses

GET
/statuses
Fetch all available statuses.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or

Responses

🟢200
application/json
Successfully retrieved all statuses
Body

🟠401
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/statuses' \
--header 'Authorization: Bearer <token>'
Response Response Example
[
    {
        "id": 0,
        "name": "created"
    }
]
Modified at 2026-04-02 11:43:40
Previous
Get a file by ID
Next
Account
Built with