List OAuth Applications
get/oauth_applications
Query parameters
cursorstring
Return the page of entries after this one.
limitinteger
Limit the size of the list that is returned. The default (and maximum) is 100 objects.
status.instring[]
Return results whose value is in the provided list. For GET requests, this should be encoded as a comma-delimited string, such as ?in=one,two,three.
created_at.afterstring date-time
Return results after this ISO 8601 timestamp.
created_at.beforestring date-time
Return results before this ISO 8601 timestamp.
created_at.on_or_afterstring date-time
Return results on or after this ISO 8601 timestamp.
created_at.on_or_beforestring date-time
Return results on or before this ISO 8601 timestamp.
Response
OAuth Application List
Example response
{
"data": [
{
"client_id": "client_id_ec79nb1bukwwafdewe88",
"created_at": "2020-01-31T23:59:59Z",
"deleted_at": null,
"id": "application_gj9ufmpgh5i56k4vyriy",
"name": "Ian Crease's App",
"status": "active",
"type": "oauth_application"
}
],
"next_cursor": "v57w5d"
}