Skip to main content
GET
/
v1
/
organizations
/
users
List organization users
curl --request GET \
  --url https://api.example.com/v1/organizations/users \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "id": "uuid",
      "name": "John Doe",
      "email": "[email protected]",
      "walletAddress": "0x123",
      "status": "PENDING",
      "phoneNumber": "31999999999",
      "code": "code-example-123",
      "language": "en",
      "timezone": "America/Sao_Paulo",
      "role": "Admin",
      "permissions": [
        {
          "role": "Admin",
          "tokenid": "uuid",
          "id": "uuid",
          "code": "code-example-123"
        }
      ]
    }
  ],
  "policies": [
    {
      "id": "uuid",
      "name": "toManage",
      "roles": [
        "ADMIN"
      ]
    }
  ],
  "meta": {
    "total": 1,
    "currentPage": 1,
    "lastPage": 1,
    "perPage": 10,
    "totalPages": 1
  }
}

Authorizations

Authorization
string
header
required

Query Parameters

email
string
walletAddress
string
walletAddresses
string
page
string
pageLimit
string

Response

200 - application/json

ok

data
object[]
policies
object[]
meta
object