Skip to main content
GET
/
admin
/
users
/
fetch
Fetch all users
curl --request GET \
  --url https://nimbussuite.com/api/v1/admin/users/fetch \
  --header 'Authorization: Bearer <token>'
{
  "users": [
    {
      "id": "<string>",
      "email": "[email protected]",
      "role": "<string>",
      "orgs": [
        {
          "id": "<string>",
          "name": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

List of users with roles and organizations

users
object[]