Skip to main content
GET
/
v2
/
stores
Retrieve a paged list of stores accessible by the current user
curl --request GET \
  --url https://mock-merchant-api-portal-dev.d.eks.aws.cld.resurs.com/v2/stores \
  --header 'Authorization: Bearer <token>'
{
  "content": [
    {
      "id": "123e4567-e89b-12d3-a456-426655440000",
      "nationalStoreId": 107,
      "countryCode": "SE",
      "name": "Resurs Store 1",
      "organizationNumber": "556123-4567"
    }
  ],
  "page": {
    "number": 1,
    "size": 10,
    "totalElements": 100,
    "totalPages": 10
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

page
integer
default:0

Zero-based page index (0..N)

size
integer
default:20

The size of the page to be returned

sort
string[]

Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.

Response

OK

Paginated list of stores

content
object[]

List of stores

page
object

Page information