Skip to content
On this page

Delete OAuth Application

🔑 Need JWT Authorization

Description

Delete oauth application

Only oauth owner can request.

Method And Path

js
POST /v2/developer/oauth/delete

Request

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

Body

ts
{
    "oauthUUID": string;
}

oauthUUID

OAuth Application UUID

Response

Success

HTTP Status Code: 200

ts
{
    status: Status.Success,
    data: {},
}

Extends Type: Status

Failed

HTTP Status Code: 200

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

Extends Type: Status, ErrorCode

Released under the MIT License.