GET/oauth_applications

List OAuth applications

Lists OAuth applications available to your integration. Use status.in to filter by application status and the created_at parameters to restrict results by creation time. Use cursor to retrieve subsequent pages of results.

7 parameters
cursorstringoptional
Return the page of entries after this cursor.
limitintegeroptional
Maximum number of OAuth applications to return. Defaults to 100 when omitted; the maximum is 100 and the value must be at least 1.
Default:100
status.inarray<string>optional
Filter by application status using a comma-delimited list of `active` or `deleted` values.
created_at.afterstringoptional
Return applications created after this ISO 8601 timestamp.
created_at.beforestringoptional
Return applications created before this ISO 8601 timestamp.
created_at.on_or_afterstringoptional
Return applications created on or after this ISO 8601 timestamp.
created_at.on_or_beforestringoptional
Return applications created on or before this ISO 8601 timestamp.

3 status codes
200Returns a list of OAuth application objects and a `next_cursor` value for retrieving the next page; `next_cursor` is null when there are no further results.
dataarray<OAuthApplication>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 processed because of a client-side error.
5XXReturned when the request cannot be processed because of a server-side error.

Error handling

limit must be at least 1 and is capped at 100. Values for status.in must be active or deleted, and the created_at filters must use ISO 8601 timestamps.