Skip to main content
GET
/
organizations
/
current
/
users
List organization users
curl --request GET \
  --url https://app.azalt.co/api/v1/organizations/current/users \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "email": "<string>",
    "phone": "<string>",
    "status": "<string>",
    "role": "COLLECTOR",
    "createdAt": "<string>",
    "ownerId": "<string>",
    "assignedSites": [
      {
        "id": "<string>",
        "name": "<string>"
      }
    ],
    "name": "<string>",
    "image": "<string>",
    "invitationExpiresAt": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Response

Successful response

id
string
required
email
string
required
phone
string | null
required
status
string
required
role
enum<string>
required
Available options:
COLLECTOR,
APPROVER,
VIEWER,
MANAGER,
OWNER
createdAt
string
required
ownerId
string
required
assignedSites
object[]
required
name
string | null
image
string | null
invitationExpiresAt
string | null