action increase_list_ach_prenotifications { label: "List ACH Prenotifications" provider: increase method: GET path: "/ach_prenotifications" encoding: json input: { type: "object" properties: { "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 ACH Prenotification objects" required: ["data", "next_cursor"] properties: { data: { type: "array" description: "The contents of the list." items: { type: "object" description: "ACH Prenotifications are one way you can verify account and routing numbers by Automated Clearing House (ACH)." required: ["id", "account_number", "addendum", "company_descriptive_date", "company_discretionary_data", "company_entry_description", "company_name", "credit_debit_indicator", "effective_date", "routing_number", "prenotification_return", "created_at", "status", "type"] properties: { account_number: { type: "string" description: "The destination account number." } addendum: { type: "string" description: "Additional information for the recipient." } company_descriptive_date: { type: "string" description: "The description of the date of the notification." } company_discretionary_data: { type: "string" description: "Optional data associated with the notification." } company_entry_description: { type: "string" description: "The description of the notification." } company_name: { type: "string" description: "The name by which you know the company." } created_at: { type: "string" format: "date-time" description: "The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which the prenotification was created." } credit_debit_indicator: { type: "string" description: "If the notification is for a future credit or debit." enum: ["credit", "debit"] } effective_date: { type: "string" format: "date-time" description: "The effective date in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format." } id: { type: "string" description: "The ACH Prenotification's identifier." } prenotification_return: { type: "object" description: "If your prenotification is returned, this will contain details of the return." required: ["created_at", "return_reason_code"] properties: { created_at: { type: "string" format: "date-time" description: "The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which the Prenotification was returned." } return_reason_code: { type: "string" description: "Why the Prenotification was returned." } } } routing_number: { type: "string" description: "The American Bankers' Association (ABA) Routing Transit Number (RTN)." } status: { type: "string" description: "The lifecycle status of the ACH Prenotification." enum: ["pending_submitting", "requires_attention", "returned", "submitted"] } type: { type: "string" description: "A constant representing the object's type. For this resource it will always be `ach_prenotification`." enum: ["ach_prenotification"] } } } } next_cursor: { type: "string" description: "A pointer to a place in the list." } } } }