Skip to main content

Get cash register status

GET https://pos.paysera.com/eapi/v1/cash-registers/{number}/status

Retrieve the current status of a specific cash register.

This endpoint returns real-time information about the cash register's operational state.

Authorization​

This endpoint requires a Personal Access Token, sent as a Bearer token.

To obtain one, your account needs API permission. Once granted, go to /user/settings in your POS account and create a personal access token.

Authorization Header Format:

Authorization: Bearer YOUR_ACCESS_TOKEN

Example:

Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...

For more details, see the Authentication section.

Parameters​

Path Parameters​

NameTypeRequiredDescription
numberstring✓Cash register number

Errors​

This endpoint may return the following errors:

400 - Bad Request​

The request was invalid or cannot be served.

401 - Unauthorized​

Missing or invalid token

This error was produced by providing incorrect credentials.

403 - Forbidden​

Access denied

This error indicates you don't have permission to access this resource.

404 - Not Found​

Cash register not found

This error indicates the requested resource was not found.

Example​

Request​

GET https://pos.paysera.com/eapi/v1/cash-registers/{number}/status
Authorization: Bearer YOUR_ACCESS_TOKEN

Response​

{
"success": true
}

AUTHORIZATION: HTTP

REQUEST

Base URL
https://pos.paysera.com

RESPONSE

Cash register status retrieved successfully
{
"success": true
}