Path parameters
-
businessId
integer(int64) Required The unique identifier for the business.
-
staffId
integer(int64) Required The unique identifier for the user.
Body
Required
-
businessLocationIds
array[integer(int64)] List of all
businessLocationIds
to be added.
POST
/staff/v1/business/{businessId}/assignStaff/{staffId}
curl \
--request POST 'https://api.trial.lsk.lightspeed.app/staff/v1/business/{businessId}/assignStaff/{staffId}' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"businessLocationIds":[123456789,987654321]}'
Request examples
{
"businessLocationIds": [
123456789,
987654321
]
}
Response examples (200)
{
"businessLocationIds": [
123456789,
987654321
]
}