GET /stores/{reference}ΒΆ

Get a single store.

Path parameters:

Name

Type

Description

reference

integer or string, required

a retailer-specific store identifier

Query parameters:

Name

Type

Description

pretty

boolean, optional, default: false

readable output formatting

Example request:

GET /stores/1001 HTTP/1.1
Host: api.ereceipts.co.uk
Accept: application/json

Example response:

See Store Object for a description of the format.

HTTP/1.1 200 OK
Content-Length: 282
Content-Type: application/json; charset=UTF-8

{
  "address": [
    "99 Foo St"
  ],
  "city": "London",
  "country": "GBR",
  "id": 1,
  "locale": "en_GB",
  "name": "Test Store",
  "phone": "+440000000000",
  "postcode": "W124AF",
  "properties": {
    "type": "outlet"
  },
  "reference": 1001,
  "timezone": "Europe/London"
}