Heads up, our devs are blazing ahead—docs are catching up, so some features might not be fully documented yet.

Printer

Printer

List printers

get

List printers, optionally for a store (query parameter).

Authorizations
Path parameters
tenantUidstringRequired

Reference to a tenant.

Pattern: ^[A-Za-z0-9-_]+
Query parameters
pageNumberintegerOptional

Reference to a specific page in a result set.

pageSizeintegerOptional

The number of items per page in a result set.

sortBystringOptional

Defines which field the resource list is sorted by.

sortDirectionstring · enumOptional
ENUM Description
ASC Sort in ascending order
DESC Sort in descending order
Possible values:
storeUidstringOptional

Reference to a store

Responses
200
Example response
application/json
get
GET /v2/tenants/{tenantUid}/printers HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

Example response

{
  "items": [
    {
      "printerUid": "text",
      "deviceUids": [
        "text"
      ],
      "storeUid": "text",
      "name": "text",
      "description": "text",
      "type": "LABEL",
      "path": "text",
      "settings": [
        {
          "key": "text",
          "value": "text",
          "type": "STRING",
          "allowedValues": [
            "text"
          ],
          "validationRegex": "text",
          "name": "text",
          "required": true
        }
      ],
      "createdBy": "text",
      "createdAt": "2025-07-30T18:22:22.025Z",
      "lastModifiedBy": "text",
      "lastModifiedAt": "2025-07-30T18:22:22.025Z"
    }
  ],
  "paging": {
    "pageNumber": 1,
    "pageSize": 1,
    "totalCount": 1
  }
}

Create printer

post

The printer path must be either a flowboxPeripheralUid or a print path. Supported protocols: lpd and jd. E.g. lpd://192.168.1.4/queuename or jd://192.168.11.2:9100/ or flowbox://flowboxPeripheralUid.

Authorizations
Path parameters
tenantUidstringRequired

Reference to a tenant.

Pattern: ^[A-Za-z0-9-_]+
Body
all ofOptional
and
Responses
201
Example response
application/json
Responseall of
and
post
POST /v2/tenants/{tenantUid}/printers HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 146

{
  "printerUid": "text",
  "type": "LABEL",
  "path": "text",
  "storeUid": "text",
  "name": "text",
  "description": "text",
  "settings": [
    {
      "key": "text",
      "value": "text"
    }
  ]
}
201

Example response

{
  "printerUid": "text",
  "deviceUids": [
    "text"
  ],
  "storeUid": "text",
  "name": "text",
  "description": "text",
  "type": "LABEL",
  "path": "text",
  "settings": [
    {
      "key": "text",
      "value": "text",
      "type": "STRING",
      "allowedValues": [
        "text"
      ],
      "validationRegex": "text",
      "name": "text",
      "required": true
    }
  ],
  "createdBy": "text",
  "createdAt": "2025-07-30T18:22:22.025Z",
  "lastModifiedBy": "text",
  "lastModifiedAt": "2025-07-30T18:22:22.025Z"
}

Search printers

post

Search printers

Authorizations
Path parameters
tenantUidstringRequired

Reference to a tenant.

Pattern: ^[A-Za-z0-9-_]+
Query parameters
pageNumberintegerOptional

Reference to a specific page in a result set.

pageSizeintegerOptional

The number of items per page in a result set.

sortBystringOptional

Defines which field the resource list is sorted by.

sortDirectionstring · enumOptional
ENUM Description
ASC Sort in ascending order
DESC Sort in descending order
Possible values:
Body
storeUidstringOptionalPattern: ^[A-Za-z0-9-_]*
printerTypestring · enumOptionalPossible values:
querystringOptional

Partial or full printer name search

Responses
200
Example response
application/json
post
POST /v2/tenants/{tenantUid}/printers/search HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 56

{
  "storeUid": "text",
  "printerType": "LABEL",
  "query": "text"
}
200

Example response

{
  "items": [
    {
      "printerUid": "text",
      "deviceUids": [
        "text"
      ],
      "storeUid": "text",
      "name": "text",
      "description": "text",
      "type": "LABEL",
      "path": "text",
      "settings": [
        {
          "key": "text",
          "value": "text",
          "type": "STRING",
          "allowedValues": [
            "text"
          ],
          "validationRegex": "text",
          "name": "text",
          "required": true
        }
      ],
      "createdBy": "text",
      "createdAt": "2025-07-30T18:22:22.025Z",
      "lastModifiedBy": "text",
      "lastModifiedAt": "2025-07-30T18:22:22.025Z"
    }
  ],
  "paging": {
    "pageNumber": 1,
    "pageSize": 1,
    "totalCount": 1
  }
}

Get printer

get

Get printer details

Authorizations
Path parameters
tenantUidstringRequired

Reference to a tenant.

Pattern: ^[A-Za-z0-9-_]+
printerUidstringRequired

Reference to a printer

Pattern: ^[A-Za-z0-9-_]+
Responses
200
Example response
application/json
Responseall of
and
get
GET /v2/tenants/{tenantUid}/printers/{printerUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

Example response

{
  "printerUid": "text",
  "deviceUids": [
    "text"
  ],
  "storeUid": "text",
  "name": "text",
  "description": "text",
  "type": "LABEL",
  "path": "text",
  "settings": [
    {
      "key": "text",
      "value": "text",
      "type": "STRING",
      "allowedValues": [
        "text"
      ],
      "validationRegex": "text",
      "name": "text",
      "required": true
    }
  ],
  "createdBy": "text",
  "createdAt": "2025-07-30T18:22:22.025Z",
  "lastModifiedBy": "text",
  "lastModifiedAt": "2025-07-30T18:22:22.025Z"
}

Update printer

put

The printer path must be either a flowboxPeripheralUid or a print path. Supported protocols: lpd and jd. E.g. lpd://192.168.1.4/queuename or jd://192.168.11.2:9100/ or flowbox://flowboxPeripheralUid.

Authorizations
Path parameters
tenantUidstringRequired

Reference to a tenant.

Pattern: ^[A-Za-z0-9-_]+
printerUidstringRequired

Reference to a printer

Pattern: ^[A-Za-z0-9-_]+
Body
storeUidstring | nullableOptionalPattern: ^[A-Za-z0-9-_]*
typestring · enumOptionalPossible values:
pathstringOptional
namestringOptional
descriptionstringOptional
Responses
200
Example response
application/json
Responseall of
and
put
PUT /v2/tenants/{tenantUid}/printers/{printerUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 126

{
  "storeUid": "text",
  "type": "LABEL",
  "path": "text",
  "name": "text",
  "description": "text",
  "settings": [
    {
      "key": "text",
      "value": "text"
    }
  ]
}
200

Example response

{
  "printerUid": "text",
  "deviceUids": [
    "text"
  ],
  "storeUid": "text",
  "name": "text",
  "description": "text",
  "type": "LABEL",
  "path": "text",
  "settings": [
    {
      "key": "text",
      "value": "text",
      "type": "STRING",
      "allowedValues": [
        "text"
      ],
      "validationRegex": "text",
      "name": "text",
      "required": true
    }
  ],
  "createdBy": "text",
  "createdAt": "2025-07-30T18:22:22.025Z",
  "lastModifiedBy": "text",
  "lastModifiedAt": "2025-07-30T18:22:22.025Z"
}

Delete printer

delete

Delete printer

Authorizations
Path parameters
tenantUidstringRequired

Reference to a tenant.

Pattern: ^[A-Za-z0-9-_]+
printerUidstringRequired

Reference to a printer

Pattern: ^[A-Za-z0-9-_]+
Responses
204
No Content
delete
DELETE /v2/tenants/{tenantUid}/printers/{printerUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
204

No Content

No content

Test printer

post

Test printer

Authorizations
Path parameters
tenantUidstringRequired

Reference to a tenant.

Pattern: ^[A-Za-z0-9-_]+
printerUidstringRequired

Reference to a printer

Pattern: ^[A-Za-z0-9-_]+
Responses
201
Printer test page Created
post
POST /v2/tenants/{tenantUid}/printers/{printerUid}/test HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*

No content

Was this helpful?