action increase_list_account_numbers { label: "List Account Numbers" provider: increase method: GET path: "/account_numbers" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Filter Account Numbers 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." } status: { type: "string" description: "The status to retrieve Account Numbers for." enum: ["active", "disabled", "canceled"] } } additionalProperties: false } output: { type: "object" description: "A list of Account Number objects" required: ["data", "next_cursor"] properties: { data: { type: "array" description: "The contents of the list." items: { type: "object" description: "Each account can have multiple account and routing numbers. We recommend that you use a set per vendor. This is similar to how you use different passwords for different websites. Account numbers can also be used to seamlessly reconcile inbound payments. Generating a unique account number per vendor ensures you always know the originator of an incoming payment." required: ["account_id", "account_number", "id", "created_at", "name", "routing_number", "status", "type"] properties: { account_id: { type: "string" description: "The identifier for the account this Account Number belongs to." } account_number: { type: "string" description: "The account number." } created_at: { type: "string" format: "date-time" description: "The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Account Number was created." } id: { type: "string" description: "The Account Number identifier." } name: { type: "string" description: "The name you choose for the Account Number." } routing_number: { type: "string" description: "The American Bankers' Association (ABA) Routing Transit Number (RTN)." } status: { type: "string" description: "This indicates if payments can be made to the Account Number." enum: ["active", "disabled", "canceled"] } type: { type: "string" description: "A constant representing the object's type. For this resource it will always be `account_number`." enum: ["account_number"] } } } } next_cursor: { type: "string" description: "A pointer to a place in the list." } } } }