Flash Payments Developer API
Back to Flash PaymentsGraphQL Playground
  • Overview
  • Basics
    • Sending data as JSON
  • Authentication
  • Quote
  • Conversions
    • Query conversions
    • Conversion statuses
  • Balance
    • Statement
  • Recipients
    • Required fields
  • Senders
  • Payments
    • Payment statuses
    • Query payments
    • Send funds
    • Auto receive funds
  • Institutions
  • Withdrawals
    • Withdraw funds
    • Withdrawal statuses
    • Query withdrawals
  • Deposits
    • Deposit statuses
    • Query deposits
    • Refund deposits
  • Sub-clients
    • Create sub-clients
    • Disable, Activate and Update sub-clients
    • Query sub-clients
  • Webhooks
    • Regular webhooks
    • Ad hoc webhooks
  • Reference data
    • Bank information
    • Rejection codes
  • Change log
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
Export as PDF
  1. Conversions

Conversion statuses

The GraphQL schema defines statuses like this:

enum ConversionStatus {
    INITIALISED
    PENDING
    CONVERTED
    FAILED
    CANCELLED
}

The current status of your conversion.

  • INITIALISED - a conversion was created but nothing else happened to it.

    • Typically never happens via API.

  • PENDING - the conversion is in progress. The typical status of the conversion after you create it.

  • CONVERTED - means successfully converted. You balances were updated accordingly.

  • FAILED - an error has occurred with this conversion. Termporary statement.

  • CANCELLED - the conversion didn't happen and has been cancelled.

    • Usually done by Flash Payments operations team.

PreviousQuery conversionsNextBalance

Last updated 6 months ago

Was this helpful?