Skip to main content

Base URL

EnvironmentURL
Sandboxhttps://test-merchant.ebioro.com
Productionhttps://merchant.ebioro.com

Authentication

All endpoints use Digest Authentication with X-Digest-Key, X-Digest-Timestamp, and X-Digest-Signature headers.

Response Format

All successful responses return JSON. Error responses follow this format:
{
  "reason": "Error description",
  "statusCode": 400
}

Common Status Codes

CodeDescription
200Success
400Bad request (invalid parameters)
401Unauthorized (invalid or missing authentication)
404Resource not found
500Internal server error

Pagination

List endpoints support pagination with query parameters:
ParameterDefaultDescription
page1Page number
limit20Items per page (max 100)
Paginated responses include a meta object with totalItems, itemCount, itemsPerPage, totalPages, and currentPage.