List Organization Members
GET/v1/organizations/:organizationId/members
deprecated
This endpoint returns the list of Members that belongs
to the given Organization, identified by the organizationId
parameter.
The results may vary based on the access level of the user who calls the endpoint:
- When it's called with Organization Admin privileges, the result will contain each member in the Organization.
- When it's called without Organization Admin privileges, the result will contain each Organization Admin along with members
of those products where the caller has
Team members and permission groups
(canManageMembers
) permission.
Request
Path Parameters
organizationId uuidrequired
The identifier of the Organization.
Responses
- 200
- 400
- 404
- 429
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
userId stringnullable
Identifier of the Member.
fullName stringnullable
Name of the Member.
email stringnullable
Email of the Member.
twoFactorEnabled boolean
Determines whether 2FA is enabled for the Member.
[
{
"userId": "string",
"fullName": "string",
"email": "string",
"twoFactorEnabled": true
}
]
Bad request.
Not found.
Too many requests. In case of the request rate exceeds the rate limits.
Loading...