Skip to main content
POST
/
internal
/
organization-users
Get users in an organization
curl --request POST \
  --url https://auth.platform.arb.inc/internal/organization-users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "organizationID": "2720f109-0caf-4c62-af22-5d08c853711c"
}
'
{
  "users": [
    {
      "id": "8f3a4b2c-1d5e-4f6a-9b7c-3e2d1a0b9c8d"
    }
  ]
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
organizationID
string<uuid>
required

The organization ID

Example:

"2720f109-0caf-4c62-af22-5d08c853711c"

Response

200 - application/json

Successfully retrieved organization users

users
object[]