v4

OpenAPI 3.1.02026-08-012402353.8 MB

Retrieve an OAuth Application

get/oauth_applications/{oauth_application_id}

Path parameters

oauth_application_idstring required

The identifier of the OAuth Application.

Response

OAuth Application

client_idstring required

The OAuth Application's client_id. Use this to authenticate with the OAuth Application.

created_atstring date-time required

The ISO 8601 timestamp when the OAuth Application was created.

deleted_atstring date-time nullable required

The ISO 8601 timestamp when the OAuth Application was deleted.

idstring required

The OAuth Application's identifier.

namestring nullable required

The name you chose for this OAuth Application.

status'active' | 'deleted' required

Whether the application is active.

type'oauth_application' required

A constant representing the object's type. For this resource it will always be oauth_application.

Example response

{
  "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"
}