Conversion statuses

The GraphQL schema defines statuses like this:

enum ConversionStatus {
    INITIALISED
    PENDING
    CONVERTED
    FAILED
    CANCELLED
}

The status of a conversion can be any of the following:

  • INITIALISED β€” A conversion record was created, but no further action has been taken. This status typically does not occur via the API.

  • PENDING β€” The conversion is in progress. This is the usual status immediately after creation.

  • CONVERTED β€” The conversion completed successfully. Your balances have been updated accordingly.

  • FAILED β€” An error occurred during the conversion. This is usually a temporary state.

  • CANCELLED β€” The conversion was not completed and has been cancelled. This action is typically performed by the Flash Payments operations team.

Last updated

Was this helpful?