GET
/
org
/
members
curl --request GET \
  --url https://svc.sandbox.anon.com/org/members \
  --header 'Authorization: Bearer <token>'
{
  "resource": "<string>",
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "email": "<string>",
      "role": "<string>",
      "createdAt": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json
resource
string
required
Allowed value: "Member"
items
object[]
required

Was this page helpful?