v1
latestOpenAPI 3.1.02026-08-06911,228852.2 KBFinancial
Get Businesses
Returns all businesses the token has access to. Pagination is supported by providing the page and size query parameters. The maximum number of business locations per business returned is 500.
get/f/data/businesses
Query parameters
pageinteger
Starting page of results, when paginating.
sizeinteger
Number of results to return, when paginating.
Response
Businesses returned
Example response
{
"_embedded": {
"businessList": [
{
"businessName": "My Business",
"businessId": 1234,
"currencyCode": "GBP",
"businessLocations": [
{
"blName": "My Business Location 1",
"blID": 1234567890,
"country": "GB",
"timezone": "Europe/London"
}
]
}
]
},
"_links": {
"self": {
"href": "https:///api.ikentoo.com/data/businesses"
}
}
}