# Conversion statuses

The GraphQL schema defines statuses like this:

```graphql
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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.flash-payments.com/fx/conversions/conversion-statuses.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
