Skip to content
On this page

List Created OAuth Application

🔑 Need JWT Authorization

Description

List previously created oauth application

Method And Path

js
POST /v2/developer/oauth/list

Request

ts
{
    "authorization": string;
    "x-request-id": string;
    "x-session-id": string;
}

Body

ts
{
    "page": number;
    "size": number;
}

page

  • minimum: 1
  • maximum: 50

size

Number of displays per page

  • default: 50
  • minimum: 1
  • maximum: 50

Response

Success

HTTP Status Code: 200

ts
{
    status: Status.Success;
    data: Array<{
        oauthUUID: string;
        appName: string;
        logoURL: string;
    }>;
}

Extends Type: Status

oauthUUID

OAuth application UUID

appName

OAuth application name

logoURL

OAuth application logo url

Failed

HTTP Status Code: 200

ts
{
    status: Status.Failed,
    code: ErrorCode,
}

Extends Type: Status, ErrorCode

Released under the MIT License.