Get a list of viresmo shops

GET /company/shops/@id/latches/viresmo/shops

Request

Authentication

This endpoint requires authentication.

Header Value
Authorization Set the value to Bearer + + access_token

URL parameters

Replace the @ keywords in the URL with their corresponding value.

A dictionary with fields

Field Type Description
id Int Shop ID

Example request 1

GET /company/shops/12/latches/viresmo/shops HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.10.0
Accept-Language: en-US,en;q=0.5

Response

Array of company.LatchViresmoShop: [company.LatchViresmoShop]

company.LatchViresmoShop

Field Type Description
id Int ID of the Viresmo shop
name String Name of the Viresmo shop
address Dictionary A dictionary with fields

Example response 1

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

[
    {
        "id": 10,
        "name": "...",
        "address": {
            "city": "...",
            "country": "...",
            "street": "...",
            "number": "...",
            "zipcode": "..."
        }
    },
    {
        "id": 16,
        "name": "...",
        "address": {
            "city": "...",
            "country": "...",
            "street": "...",
            "number": "...",
            "zipcode": "..."
        }
    },
    {
        "id": 15,
        "name": "...",
        "address": {
            "city": "...",
            "country": "...",
            "street": "...",
            "number": "...",
            "zipcode": "..."
        }
    }
]
This is a development version Do not use this version in production
1.10.0 development