List Staff
const url = 'https://api.upvio.com/v1/businesses/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/staff';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.upvio.com/v1/businesses/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/staff \ --header 'Authorization: Bearer <token>'List Staff Members within a Business
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Business ID
Responses
Section titled “ Responses ”List of Staff Members
object
A user within a Business that can use and/or manage resources.
object
Unique identifier across the platform.
Time when the resource was created (ISO 8601 format).
Time when the resource was created (ISO 8601 format).
The ID of the Business this resource belongs to.
Unique Email Address that the Staff uses to login.
An optional unique alias for the Staff member.
The full legal name of the staff member.
The status of the staff member. Only ACTIVE staff can be booked.
Deprecated - Use status instead. Returns true when status is ACTIVE.
The URL where patients can book this staff member directly.
A list of roles assigned to the Staff.
A list of Staff IDs that are managed by this Staff.
Timezone string.
Example
{ "data": [ { "alias": "john", "name": "John Doe", "status": "ACTIVE", "bookingURL": "https://forms.upvio.com/book/acme/staff/123", "roles": [ "ADMIN" ], "timezone": "UTC" } ]}