Skip to content
StraventaDocs

List registers in merchant scope

Returns all registers across all stores in the caller's merchant scope. Requires `pos.store.read` or equivalent.

GET
/api/pos/v1/registers

Returns all registers across all stores in the caller's merchant scope. Requires pos.store.read or equivalent.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Response Body

application/json

curl -X GET "https://example.com/api/pos/v1/registers"
{
  "registers": [
    {
      "id": "018f4d9f-7b8a-7c2d-9a2d-1f8b92f6d102",
      "store_id": "018f4d9f-7b8a-7c2d-9a2d-1f8b92f6d101",
      "label": "Register 1",
      "status": "active"
    }
  ],
  "total": 1
}
Empty
Empty

Was this page helpful?