POST
/
identity
/
accounts
Create Account
curl --request POST \
  --url https://api.paxos.com/v2/identity/accounts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "account": {
    "identity_id": "82c338f4-3cb7-4d9b-be2a-4b077c82ee3a",
    "ref_id": "fec36070-4c23-48ac-9ee1-df338b8233fc",
    "description": "Individual account for John Doe",
    "metadata": {
      "custom_field": "custom_value"
    }
  }
}'
{
  "id": "e69e4e31-6dca-4a46-bb85-af40b5fe2d59",
  "identity_id": "82c338f4-3cb7-4d9b-be2a-4b077c82ee3a",
  "ref_id": "fec36070-4c23-48ac-9ee1-df338b8233fc",
  "description": "Individual account for John Doe",
  "metadata": {
    "custom_field": "custom_value"
  },
  "admin_disabled": false,
  "user_disabled": false
}
OAuth Scope
identity:write_account

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 →

Body

application/json
account
object
required
create_profile
boolean

Create a new profile for this account. Set to true to track user balances at the Profile level for this account. See also Profiles.

Response

200 - application/json

A successful response.

id
string

The id used for all other interactions with this account.

identity_id
string

The primary identity associated with the account.

description
string

A free-text description of the account.

admin_disabled
boolean

true if the account has been disabled by a Paxos admin.

user_disabled
boolean

true if the account has been disabled by the API user.

metadata
object

API User-facing metadata.

ref_id
string

A user-facing ID to prevent duplicate account creation. Unique for all accounts created by the same API user.

members
object[]

Additional Identities with varying types of access to this account.

created_at
string<date-time>

The time this account was created.

summary_status
enum<string>
Available options:
PENDING,
ERROR,
APPROVED,
DENIED,
DISABLED
updated_at
string<date-time>

The time this account was updated.

profile_id
string

The ID of the profile created for the account when create_profile=true. The Profile type is NORMAL. The field is omitted when the account has no associated Profile.

type
enum<string>
Available options:
BROKERAGE,
TRADITIONAL_IRA,
ROTH_IRA,
SEP_IRA,
FINANCIAL_ADVISOR