Learn how transactions move through different states in Blnk.
parent_transaction
attribute. Here’s how it works:
Transaction lifecycle flow showing how transactions progress from QUEUED to final states
QUEUED
state.
INFLIGHT
: If the transaction request includes "inflight": "true"
. It continues to:
APPLIED
: If the inflight transaction is committed or;VOID
: If the inflight transaction is voided.APPLIED
: When the transaction is completed and applied to the balances.REJECTED
: When the transaction is not processed due to reasons like insufficient funds, etc.skip_queue
feature allows you to bypass the default transaction queuing system and immediately process transactions directly. This is useful for scenarios where you need real-time transaction processing while still maintaining data consistency.
To enable this feature, include “skip_queue”: true in the request body when calling the Create Transaction endpoint:
skip_queue
, the transaction:
skip_queue
when: