List organization members
Fetch users belonging to the selected organization. Currently unavailable in self-hosted ECE.
Path parameters
-
Identifier for the Organization
GET /organizations/{organization_id}/members
curl \
-X GET https://{{hostname}}/api/v1/organizations/{organization_id}/members
Response examples (200)
{
"members": [
{
"organization_id": "string",
"user_id": "string",
"name": "string",
"email": "string",
"member_since": "2024-05-04T09:42:00+00:00"
}
]
}
Response examples (404)
# Headers
x-cloud-error-codes: organization.not_found
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}