GET
/
identity
/
accounts
/
{id}
cURL
curl --request GET \
  --url https://api.paxos.com/v2/identity/accounts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "identity_id": "<string>",
  "description": "<string>",
  "admin_disabled": true,
  "user_disabled": true,
  "metadata": {},
  "ref_id": "<string>",
  "members": [
    {
      "identity_id": "<string>",
      "type": "BENEFICIAL_OWNER",
      "roles": [
        "BENEFICIAL_OWNER"
      ],
      "id": "<string>"
    }
  ],
  "created_at": "2023-11-07T05:31:56Z",
  "summary_status": "PENDING",
  "updated_at": "2023-11-07T05:31:56Z",
  "profile_id": "<string>",
  "type": "BROKERAGE"
}

Authorizations

Authorization
string
header
required

Paxos APIs use OAuth 2 with the client credentials grant flow.

Token URLs:

Learn more in the API credentials guide →

Path Parameters

id
string
required

uuid id of account

Response

200 - application/json

A successful response.

The response is of type object.