GET/entity_onboarding_sessions

List entity onboarding sessions

Lists entity onboarding sessions, which let customers complete onboarding through hosted forms. Use cursor to continue from a previous page, and filter the results by status.in or idempotency_key.

4 parameters
cursorstringoptional
Returns the page of entity onboarding sessions after this cursor.
limitintegeroptional
Maximum number of sessions to return. Must be between 1 and 100. Defaults to 100 when omitted.
Default:100
status.inarray<string>optional
Filter sessions by status; provide `active`, `expired`, or both as a comma-delimited list.
idempotency_keystringoptional
Filter for the session with this idempotency key. Must be between 1 and 200 characters.

3 status codes
200Returns a page of entity onboarding session objects and a `next_cursor` for retrieving the next page.
dataarray<EntityOnboardingSession>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 has a client-side error.
5XXReturned when the request encounters a server-side error.

Error handling

limit must be between 1 and 100, and status.in accepts active or expired. idempotency_key must be between 1 and 200 characters when provided.