A crypto send was accepted and is queued. No funds have moved.
Triggered when our provider has accepted the crypto send request and queued it for processing.
payout_type is always crypto. Gift cards have no equivalent, and their first event is payout.processing.
Body
The crypto body, with the data shape documented on payout.quote_created.
This maps from the provider's new or pending status, so data.status will be one of those rather than "in_progress".
Example
{
"event": "payout.in_progress",
"payout_type": "crypto",
"data": {
"id": 354,
"status": "pending",
"input_amount": "100.0",
"sending_amount": "0.049422",
"blockchain_transactions": [],
"requires_2fa_confirmation": false
}
}
datais abridged here. The full object is documented onpayout.quote_created.
What to do on receipt
- The send is real and queued. No funds have moved and nothing is on chain.
- Advance your local state, but do not treat this as final.
- Expect
payout.processingnext, then a terminal event. - If
requires_2fa_confirmationistrue, the send is waiting on recipient approval and may sit here a while.