Skip to content
On this page

Revoke OAuth Application

🔑 Need JWT Authorization

Description

Revoke oauth application.

Only granted oauth application user can request.

Method And Path

js
POST /v2/application/revoke

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.