Skip to main content
GET
/
v2
/
identity
/
identities
/
controls
{
  "identity_controls": [
    {
      "identity_id": "<string>",
      "identity_controls": {
        "available_actions": [
          "CRYPTO_WITHDRAWAL"
        ],
        "dormant": true,
        "frozen": true,
        "closed": true,
        "denied": true,
        "admin_controls": {
          "dormant": true,
          "frozen": true,
          "closed": true,
          "denied": true
        }
      }
    }
  ],
  "next_page_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

identity_ids
string[]

Filter by specific identity IDs. Limit 100.

frozen
boolean

Filter by frozen status.

dormant
boolean

Filter by dormant status.

closed
boolean

Filter by closed status.

denied
boolean

Filter by denied status.

limit
integer

Number of results to return. Defaults to 100 if no limit is provided. Maximum 100.

order
enum<string>

Sort order for the results. Defaults to DESC by created_at time.

Available options:
DESC,
ASC
page_cursor
string

Optional cursor for getting the next page of results.

Response

A successful response.

identity_controls
object[]
next_page_cursor
string