Skip to main content
GET
/
organizations
/
{orgId}
/
members
Get organization members
curl --request GET \
  --url https://nimbussuite.com/api/v1/organizations/{orgId}/members \
  --header 'Authorization: Bearer <token>'
{
  "members": [
    {
      "user_id": "<string>",
      "role": "<string>",
      "email": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

orgId
string
required

Response

List of organization members

members
object[]