Get address delivery information

GET /shops/@id/delivery/address/info

Request

URL parameters

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

A dictionary with fields

Field Type Description
id Int An integer value

Query string (URL)

Append the querystring with following properties to the URL.

A dictionary with fields

Field Type Description
address String Address string, e.g. Bakerystreet 15, 9000 Gent. Or just Bakerystreet 15

Example request 1

GET /shops/13/delivery/address/info?address=... HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.9.0
Accept-Language: en-US,en;q=0.5

Response

A dictionary with fields

Field Type Description
delivery_possible Bool A boolean value

Example response 1

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

{
    "delivery_possible": false
}
1.9.0 stable