action increase_update_an_account_number { label: "Update an Account Number" provider: increase method: PATCH path: "/account_numbers/{account_number_id}" encoding: json input: { type: "object" properties: { account_number_id: { type: "string" description: "The identifier of the Account Number." } name: { type: "string" description: "The name you choose for the Account Number." } status: { type: "string" description: "This indicates if transfers can be made to the Account Number." enum: ["active", "disabled", "canceled"] } } required: ["account_number_id"] additionalProperties: false } 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"] } } } }