Overview
Applications

Open and update various types of accounts.

ACH Profiles

Create, update, and verify account ACH profiles.

Transactions

Manage deposit and withdrawal transactions on an account.

Documents

Fetch statements, tax documents and trade confirmations for customers.

Webhooks

Manage and test evented webhooks.

Virtual Accounts

Create and update paper trading accounts.

ACAT Transfers

Manage ACAT Transfers on an account.

Reference

Examples, response types, property details and explanations.

Transaction Payloads

Example Transaction webhook payloads for the Tradier Brokerage API.

Deposit Transaction Submitted

{
    "transactionId": 1,
    "clearingAccount": "6YA000000",
    "type": "TRANSACTION",
    "action": "SUBMITTED",
    "branchId": 1,
    "email":"email@email.com",
    "amount":500.00,
    "direction":"DEPOSIT"
}

Deposit Transaction Approved

{
    "transactionId": 1,
    "clearingAccount": "6YA000000",
    "type": "TRANSACTION",
    "action": "APPROVED",
    "branchId": 1,
    "email":"email@email.com",
    "amount":500.00,
    "direction":"DEPOSIT"
}

Deposit Transaction Completed

{
    "transactionId": 1,
    "clearingAccount": "6YA000000",
    "type": "TRANSACTION",
    "action": "COMPLETED",
    "branchId": 1,
    "email":"email@email.com",
    "amount":500.00,
    "direction":"DEPOSIT"
}

Withdrawal Transaction Submitted

{
    "transactionId": 1,
    "clearingAccount": "6YA000000",
    "type": "TRANSACTION",
    "action": "SUBMITTED",
    "branchId": 1,
    "email":"email@email.com",
    "amount":500.00,
    "direction":"WITHDRAWAL"
}

Withdrawal Transaction Approved

{
    "transactionId": 1,
    "clearingAccount": "6YA000000",
    "type": "TRANSACTION",
    "action": "APPROVED",
    "branchId": 1,
    "email":"email@email.com",
    "amount":500.00,
    "direction":"WITHDRAWAL"
}

Withdrawal Transaction Completed

{
    "transactionId": 1,
    "clearingAccount": "6YA000000",
    "type": "TRANSACTION",
    "action": "COMPLETED",
    "branchId": 1,
    "email":"email@email.com",
    "amount":500.00,
    "direction":"WITHDRAWAL"
}