GET /shops/@id/photos
Replace the @ keywords in the URL with their corresponding value.
A dictionary with fields
Field | Type | Description |
---|---|---|
id | Int | An integer value |
GET /shops/16/photos HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.10.0
Accept-Language: en-US,en;q=0.5
Array of ShopPhoto: [ShopPhoto]
Field | Type | Description |
---|---|---|
url | URL | An URL field starting with http:// or https:// |
thumbnail_url | URL? | Nullable. An URL field starting with http:// or https:// |
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: 296
[
{
"url": "https://example.com",
"thumbnail_url": "https://example.com"
},
{
"url": "https://example.com",
"thumbnail_url": "https://example.com"
},
{
"url": "https://example.com",
"thumbnail_url": "https://example.com"
}
]