Skip to Content
BrazilPayoutGet Payout Status (Brazil PIX)

Get Payout Status (Brazil PIX)

GET/v1/payouts/:id

Poll payout status after Create Payout. This is the shared status endpoint for all rails. There is no request body.

Path parameters

FieldTypeRequiredDescription
idstringYesUse transactionId from the create response

Example

curl -X GET https://api.transacty.ai/v1/payouts/{transactionId} \
  -H "X-Transacty-Key: $TRANSACTY_KEY" \
  -H "X-Transacty-Timestamp: $TS" \
  -H "X-Transacty-Signature: $SIG" \
  -H "Content-Type: application/json"

Response fields

FieldTypeDescription
idstringInternal id
transactionIdstringPublic transaction id
statusstringpending, success, or failed
amountstringAmount sent to the beneficiary
currencystringBRL
platformOrderIdstringProvider reference (on success)
recipientobjectBeneficiary and originator details
createdAtstring (ISO datetime)Creation timestamp
completedAtstring | null (ISO datetime)Completion timestamp
estimatedCompletionstring (ISO datetime)Estimated completion while pending
feesobjectTransacty service fee
fees.feeStatusstringestimated while pending; applied on success
totalWalletDebitstringBRL debited from your wallet (amount + fee)

On payout.failed, the BRL debit is refunded. Poll until status === "success" or handle the webhook.

Next steps

Last updated on