action increase_create_an_external_account { label: "Create an External Account" provider: increase method: POST path: "/external_accounts" encoding: json input: { type: "object" required: ["account_number", "description", "routing_number"] properties: { account_number: { type: "string" description: "The account number for the destination account." } description: { type: "string" description: "The name you choose for the Account." } funding: { type: "string" description: "The type of the destination account. Defaults to `checking`." enum: ["checking", "savings", "other"] } routing_number: { type: "string" description: "The American Bankers' Association (ABA) Routing Transit Number (RTN) for the destination account." } } } output: { type: "object" description: "External Accounts represent accounts at financial institutions other than Increase. You can use this API to store their details for reuse." required: ["account_number", "created_at", "description", "funding", "id", "routing_number", "status", "type", "verification_status"] properties: { account_number: { type: "string" description: "The destination account number." } created_at: { type: "string" format: "date-time" description: "The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which the External Account was created." } description: { type: "string" description: "The External Account's description for display purposes." } funding: { type: "string" description: "The type of the account to which the transfer will be sent." enum: ["checking", "savings", "other"] } id: { type: "string" description: "The External Account's identifier." } routing_number: { type: "string" description: "The American Bankers' Association (ABA) Routing Transit Number (RTN)." } status: { type: "string" description: "The External Account's status." enum: ["active", "archived"] } type: { type: "string" description: "A constant representing the object's type. For this resource it will always be `external_account`." enum: ["external_account"] } verification_status: { type: "string" description: "If you have verified ownership of the External Account." enum: ["unverified", "pending", "verified"] } } } }