Get business services
This endpoint allows to query the business services with the products linked to each service.
GET /api/v2/businesses/{businessId}/services
If the data included in the request is correct, the response will contain the list of business services, detailing the following information:
-
id: external identifier of the service.
-
name: name of the service.
-
timeZone: time zone of the service.
-
products: list of external identifiers of the service’s products.
-
lat: latitude of the service’s physical location.
-
lon: longitude of the service’s physical location.
-
metadata: any additional metadata defined at the business level for the services.
Request example
GET /api/v2/businesses/BUSINESSID/services
Response:
[
{
"id": "0001",
"name": "STORE-01",
"timeZone": "Europe/Paris",
"products": [
"0001-GENERAL",
"0001-HD"
]
},
{
"id": "0002",
"name": "STORE-02",
"timeZone": "Africa/Abidjan",
"products": [
"0002"
]
},
{
"name": "STORE-03",
"timeZone": "Europe/Madrid",
"products": [
null,
null
],
"lat": 40.39336952418088,
"lon": -3.766111678479019
}
]
As seen in the example, the request will return the information defined for each service.