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"
}