Get All Order Profiles
Returns a list of active order profiles for a specific business location.
The order profile code can be used to retrieve a specific price list when loading a menu.
Note: Order Profiles were previously called Account Profiles, and may still be referred to in this way in the API, in some cases.
Query parameters
-
The unique identifier for the business location.
GET /o/op/data/account-profiles
curl \
-X GET https://api.trial.lsk.lightspeed.app/o/op/data/account-profiles?businessLocationId=45454565682155 \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"businessLocationId": 45454565682155,
"accountProfileList": [
{
"id": 12454575601144,
"code": "takeaway",
"name": "Takeaway",
"deliveryMode": "TAKE_AWAY"
}
]
}