action increase_create_an_account_number { label: "Create an Account Number" provider: increase method: POST path: "/account_numbers" encoding: json input: { type: "object" required: ["account_id", "name"] properties: { account_id: { type: "string" description: "The Account the Account Number should belong to." } name: { type: "string" description: "The name you choose for the Account Number." } } } output: { 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", "created_at", "id", "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"] } } } }