Staff
Working with staff in Menuflow
Staff are the personnel who work at a location and serve guests. The main purpose of the Staff API calls is to log which staff member is serving which tables and subsequent orders. This allows the Menuflow platform to track tips and make sure they are allocated to the correct staff member.
Get Staff
Call to retrieve a list of staff members serving at a specific location.
List Request
GET
https://api.menuflow.dev/go/staff/{location_id}
curl --location 'https://api.menuflow.dev/go/staff/{
location_id}'
--header 'x-api-key: YOUR-API-KEY'
Path Parameters
location_id*
integer
location_id of were the staff member works
Add Staff
Call to add a new member of staff to a specific location.
Add Request
POST
https://api.menuflow.dev/go/staff/{location_id}
curl
--location 'https://api.menuflow.dev/go/staff/{
location_id}'
--header 'Content-Type: text/plain'
--header 'x-api-key: YOUR-API-KEY'
--data '{
"first_name": "Jack",
"last_name": "Dorsey"
}'
Path Parameters
location_id*
integer
location_id of new staff member
Delete Staff
Call to delete a specific staff member. Deleted staff members may still be shown in tipping reports.
Delete Request
DELETE
https://api.menuflow.dev/go/staff/{staff_id}
curl
--location
--request DELETE 'https://api.menuflow.dev/go/staff/{
staff_id}'
--header 'x-api-key: YOUR-API-KEY'
Path Parameters
staff_id*
integer
staff_id of the member to delete
Last updated