Get cash register daily sales summary
GET https://pos.paysera.com/eapi/v1/cash-registers/{number}/daily-summary
Retrieve today's sales totals for a specific cash register, split by payment method.
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​
| Name | Type | Required | Description |
|---|---|---|---|
number | string | ✓ | Cash register number |
Errors​
This endpoint may return the following errors:
400 - Bad Request​
Invalid request
This error is resulted by incorrectly providing one of the parameters.
401 - Unauthorized​
Unauthorized
This error was produced by providing incorrect credentials.
403 - Forbidden​
Forbidden
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.
429 - Too Many Requests​
Rate limit exceeded
500 - Internal Server Error​
Internal server error
Example​
Request​
GET https://pos.paysera.com/eapi/v1/cash-registers/{number}/daily-summary
Authorization: Bearer YOUR_ACCESS_TOKEN
Response​
{
"date": "2026-06-29",
"total": "80.00",
"cardTotal": "50.00",
"cashTotal": "30.00",
"count": 2,
"refundedTotal": "0.00"
}
AUTHORIZATION: HTTP
REQUEST
RESPONSE
{
"date": "2026-06-29",
"total": "80.00",
"cardTotal": "50.00",
"cashTotal": "30.00",
"count": 2,
"refundedTotal": "0.00"
}