action increase_list_account_statements { label: "List Account Statements" provider: increase method: GET path: "/account_statements" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Filter Account Statements to those belonging to the specified Account." } cursor: { type: "string" description: "Return the page of entries after this one." } limit: { type: "integer" description: "Limit the size of the list that is returned. The default (and maximum) is 100 objects." } "statement_period_start.after": { type: "string" format: "date-time" description: "Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp." } "statement_period_start.before": { type: "string" format: "date-time" description: "Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp." } "statement_period_start.on_or_after": { type: "string" format: "date-time" description: "Return results on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp." } "statement_period_start.on_or_before": { type: "string" format: "date-time" description: "Return results on or before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp." } } additionalProperties: false } output: { type: "object" description: "A list of Account Statement objects" required: ["data", "next_cursor"] properties: { data: { type: "array" description: "The contents of the list." items: { 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: ["id", "account_id", "created_at", "file_id", "statement_period_start", "statement_period_end", "starting_balance", "ending_balance", "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"] } } } } next_cursor: { type: "string" description: "A pointer to a place in the list." } } } }