GET/ach_prenotifications

List ACH Prenotifications

Lists ACH Prenotifications, with optional filters for creation time and idempotency key. Use cursor and limit to page through the results; limit defaults to 100 and cannot exceed 100.

7 parameters
cursorstringoptional
Return the page of entries after this cursor.
limitintegeroptional
Maximum number of ACH Prenotifications to return. Defaults to 100 when omitted; must be at least 1 and cannot exceed 100.
Default:100
idempotency_keystringoptional
Filter by the idempotency key used for the ACH Prenotification. Must contain 1 to 200 characters.
created_at.afterstringoptional
Return ACH Prenotifications created after this ISO 8601 timestamp.
created_at.beforestringoptional
Return ACH Prenotifications created before this ISO 8601 timestamp.
created_at.on_or_afterstringoptional
Return ACH Prenotifications created at or after this ISO 8601 timestamp.
created_at.on_or_beforestringoptional
Return ACH Prenotifications created at or before this ISO 8601 timestamp.

3 status codes
200Returns a page of ACH Prenotification objects in `data` and a `next_cursor` for retrieving the next page, or null when there are no more results.
dataarray<ACHPrenotification>required
The contents of the list.
next_cursorstringrequired
A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next page of results. If there are no more results, the value will be `null`.
4XXReturned when the request encounters a client-side error.
5XXReturned when the request encounters a server-side error.

Error handling

limit must be at least 1 and no greater than 100. idempotency_key must contain 1 to 200 characters, and creation-time filters must use ISO 8601 timestamps.