githubEdit

Statement

Understand every movement of your primary balance

This query returns the same data as the Download CSV button on the Account Statement page of the Flash Connectarrow-up-right.

The dates must be any ISO 8601 formatted dates.

const bodyJSON = {
  variables: {
    input: {
        fromDate: "2023-08-28T00:00:00+03:00",
    },
  },
  query: `
query ($input: StatementQueryInput!) {
  statement(input: $input) {
    succes code message fromDate toDate 
      rows {
        debit credit
    }
  }  
}`,
};

The response dates are aways UTC. Timezones are always taken into account.

Last updated

Was this helpful?