1. Models
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
  • Shipping
    • List available carriers
      GET
    • Calculate shipping rates
      POST
  • Models
    • List available models
      GET
  • Schemas
    • Account
    • Address
    • Customer
    • Model
    • Product
    • ProductGroup
    • SubscriptionPlan
    • Shipping
    • ShippingCarrier
    • ShippingRate
    • ShippingEnvelope
    • Order
    • NFC
  1. Models

List available models

GET
/models
Returns the list of product models available, read from the database. This is the authoritative source for the modelId values used when creating an order or calculating shipping rates.

Request

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

Responses

🟢200
application/json
Successfully retrieved available models
Bodyapplication/json

🟠401
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/models' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "success": true,
    "models": [
        {
            "id": "ntag424_pvccard_white",
            "size": {
                "width": 0,
                "height": 0,
                "length": 0,
                "weight": 6
            },
            "prices": [],
            "canBeEncoded": true
        }
    ]
}
Modified at 2026-06-17 14:17:50
Previous
Calculate shipping rates
Next
Account
Built with