List active staff + their service assignments
GET
/api/public/{slug}/staff
const url = 'https://example.com/api/public/example/staff';const options = {method: 'GET'};
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://example.com/api/public/example/staffParameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”slug
required
string
Responses
Section titled “Responses”Default Response
Media typeapplication/json
object
Examplegenerated
{ "data": [ { "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "name": "example", "title": "example", "bio": "example", "avatarUrl": "example", "serviceIds": [ "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" ] } ]}