action increase_retrieve_an_account_statement { label: "Retrieve an Account Statement" provider: increase method: GET path: "/account_statements/{account_statement_id}" encoding: json input: { type: "object" properties: { account_statement_id: { type: "string" description: "The identifier of the Account Statement to retrieve." } } required: ["account_statement_id"] additionalProperties: false } output: { type: "object" description: "Account Statements are generated monthly for every active Account. You can access the statement's data via the API or retrieve a PDF with its details via its associated File." required: ["account_id", "created_at", "ending_balance", "file_id", "id", "starting_balance", "statement_period_end", "statement_period_start", "type"] properties: { account_id: { type: "string" description: "The identifier for the Account this Account Statement belongs to." } created_at: { type: "string" format: "date-time" description: "The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Account Statement was created." } ending_balance: { type: "integer" description: "The Account's balance at the start of its statement period." } file_id: { type: "string" description: "The identifier of the File containing a PDF of the statement." } id: { type: "string" description: "The Account Statement identifier." } starting_balance: { type: "integer" description: "The Account's balance at the start of its statement period." } statement_period_end: { type: "string" format: "date-time" description: "The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time representing the end of the period the Account Statement covers." } statement_period_start: { type: "string" format: "date-time" description: "The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time representing the start of the period the Account Statement covers." } type: { type: "string" description: "A constant representing the object's type. For this resource it will always be `account_statement`." enum: ["account_statement"] } } } }