GET
/intrafi_account_enrollmentsList IntraFi account enrollments
Lists IntraFi account enrollments, with optional filters for account, enrollment status, and idempotency key. Use cursor and limit to retrieve results in pages; the default and maximum limit is 100.
cursorstringoptional
Returns the page of results after this cursor; use the `next_cursor` value from a previous response to continue.
limitintegeroptional
Maximum number of enrollments to return. Must be at least 1 and defaults to 100 when omitted; the maximum is 100.
account_idstringoptional
Filter results to the enrollment belonging to this account.
status.inarray<string>optional
Filter by enrollment status: `pending_enrolling`, `enrolled`, `pending_unenrolling`, `unenrolled`, or `requires_attention`. For GET requests, encode multiple statuses as a comma-delimited string.
idempotency_keystringoptional
Filter for the enrollment with this idempotency key. Must be between 1 and 200 characters.
200Returns a list of IntraFi account enrollment objects and a `next_cursor` value for retrieving the next page; `next_cursor` is null when there are no more results.
dataarray<IntraFiAccountEnrollment>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 cannot be completed because of a client-side error.
5XXReturned when the request cannot be completed because of a server-side error.
Error handling
limit must be at least 1 and no more than 100, and defaults to 100 when omitted. status.in accepts pending_enrolling, enrolled, pending_unenrolling, unenrolled, or requires_attention; encode multiple statuses as a comma-delimited string. idempotency_key must be between 1 and 200 characters.