List Organization Members
GET/v2/organizations/:organizationId/members
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
The identifier of the Organization.
Responses
- 200
- 400
- 404
- 429
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Array [
]
Array [
Array [
]
]
admins
object[]
nullable
List of Organization Admins.
Identifier of the Organization Admin.
Name of the Organization Admin.
Email of the OrganizationAdmin.
Determines whether 2FA is enabled for the Organization Admin.
billingManagers
object[]
nullable
List of Billing Managers.
Identifier of the Organization Admin.
Name of the Organization Admin.
Email of the OrganizationAdmin.
Determines whether 2FA is enabled for the Organization Admin.
members
object[]
nullable
List of Organization Members.
Identifier of the Organization Admin.
Name of the Organization Admin.
Email of the OrganizationAdmin.
Determines whether 2FA is enabled for the Organization Admin.
permissions
object[]
nullable
The permissions of the Member.
product
object
Describes the Member's Product.
Identifier of the Member's Product.
Name of the Member's Product.
permissionGroup
object
Describes the Member's Permission Group within a Product.
Identifier of the Member's Permission Group.
Name of the Member's Permission Group.
{
"admins": [
{
"userId": "string",
"fullName": "string",
"email": "string",
"twoFactorEnabled": true
}
],
"billingManagers": [
{
"userId": "string",
"fullName": "string",
"email": "string",
"twoFactorEnabled": true
}
],
"members": [
{
"userId": "string",
"fullName": "string",
"email": "string",
"twoFactorEnabled": true,
"permissions": [
{
"product": {
"productId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string"
},
"permissionGroup": {
"permissionGroupId": 0,
"name": "string"
}
}
]
}
]
}
Bad request.
Not found.
Too many requests. In case of the request rate exceeds the rate limits.