OBJECT

OAuthApp

Information about a registered developer OAuth application.

link GraphQL Schema definition

1type OAuthApp {
2
3# The category that describes the app's type.
4category: OAuthAppCategory
5
6# The timestamp when the app was created.
7createdAt: Time!
8
9# The ID of the app. It is the value of the `Client-ID` header when the app makes
10# API requests.
11id: ID!
12
13# The name of the app.
14name: String!
15
16# The user-provided description of the app's type. Used if `Category` is Other.
17otherDescription: String
18
19# Owner is the user that owns this app.
20owner: User
21
22# The URI to which users should be redirected after authorizing the app.
23redirectURI: String!
24
25# The client secret of the app.
26secret: String!
27
28# The timestamp when the app was last updated.
29updatedAt: Time!
30
31# Whether the app's OAuth tokens expire.
32willTokensExpire: Boolean!
33
34}