Create a Pending Transaction
Creates a pending transaction on an account. This can be useful to hold funds for an external payment or known future transaction outside of Increase (only negative amounts are supported). The resulting Pending Transaction will have a category of user_initiated_hold and can be released via the API to unlock the held funds.
post/pending_transactions
Request body
Example request
{
"account_id": "account_in71c4amph0vgo2qllky",
"amount": -1000,
"description": "Hold for pending transaction"
}Response
Pending Transaction
Example response
{
"account_id": "account_in71c4amph0vgo2qllky",
"amount": 100,
"completed_at": null,
"created_at": "2020-01-31T23:59:59Z",
"currency": "USD",
"description": "INVOICE 2468",
"held_amount": 100,
"id": "pending_transaction_k1sfetcau2qbvjbzgju4",
"route_id": "card_oubs0hwk5rn6knuecxg2",
"route_type": "card",
"source": {
"ach_transfer_instruction": {
"amount": 100,
"transfer_id": "ach_transfer_uoxatyh3lt5evrsdvo7q"
},
"category": "ach_transfer_instruction"
},
"status": "pending",
"type": "pending_transaction"
}