Docly

Get All Team Members

Estimated reading: 1 minute

GET

https://api.bunnydoc.com/v1/listTeamMembers

If the API key is correct and the request is successful, it will return a response containing an array with all team members’ information. Each element in the array will represent a team member and would include details such as their name, email, role, and any other relevant information associated with team members in the system.

Headers

Authorization: Api-Key {API_KEY}

{
   "error":0,
   "message":"",
   "teamMembers":[
      {
         "id":"xxxxxxxxxx",
         "firstName":"Joe",
         "surname":"Test",
         "email":"[email protected]",
         "status":"active",
         "role":"admin"
      },
      {
         "id":"xxxxxxxxxx",
         "firstName":"June",
         "surname":"Test",
         "email":"[email protected]",
         "status":"active",
         "role":"team-member"
      }
   ]
}