action increase_list_account_transfers { label: "List Account Transfers" provider: increase method: GET path: "/account_transfers" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Filter Account Transfers to those that originated from the specified Account." } "created_at.after": { type: "string" format: "date-time" description: "Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp." } "created_at.before": { type: "string" format: "date-time" description: "Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp." } "created_at.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." } "created_at.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." } 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." } } additionalProperties: false } output: { type: "object" description: "A list of Account Transfer objects" required: ["data", "next_cursor"] properties: { data: { type: "array" description: "The contents of the list." items: { type: "object" description: "Account transfers move funds between your own accounts at Increase." required: ["id", "amount", "account_id", "currency", "destination_account_id", "destination_transaction_id", "created_at", "description", "network", "status", "template_id", "transaction_id", "approval", "cancellation", "type"] properties: { account_id: { type: "string" description: "The Account to which the transfer belongs." } amount: { type: "integer" description: "The transfer amount in the minor unit of the destination account currency. For dollars, for example, this is cents." } approval: { type: "object" description: "If your account requires approvals for transfers and the transfer was approved, this will contain details of the approval." required: ["approved_at"] properties: { approved_at: { type: "string" format: "date-time" description: "The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which the transfer was approved." } } } cancellation: { type: "object" description: "If your account requires approvals for transfers and the transfer was not approved, this will contain details of the cancellation." required: ["canceled_at"] properties: { canceled_at: { type: "string" format: "date-time" description: "The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which the Transfer was canceled." } } } created_at: { type: "string" format: "date-time" description: "The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which the transfer was created." } currency: { type: "string" description: "The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the destination account currency." enum: ["CAD", "CHF", "EUR", "GBP", "JPY", "USD"] } description: { type: "string" description: "The description that will show on the transactions." } destination_account_id: { type: "string" description: "The destination account's identifier." } destination_transaction_id: { type: "string" description: "The ID for the transaction receiving the transfer." } id: { type: "string" description: "The account transfer's identifier." } network: { type: "string" description: "The transfer's network." enum: ["account"] } status: { type: "string" description: "The lifecycle status of the transfer." enum: ["pending_submission", "pending_approval", "canceled", "requires_attention", "flagged_by_operator", "complete"] } template_id: { type: "string" description: "If the transfer was created from a template, this will be the template's ID." } transaction_id: { type: "string" description: "The ID for the transaction funding the transfer." } type: { type: "string" description: "A constant representing the object's type. For this resource it will always be `account_transfer`." enum: ["account_transfer"] } } } } next_cursor: { type: "string" description: "A pointer to a place in the list." } } } }