---
title: "Delete/Revoke Tokens"
method: POST
path: "/oauth/revoke"
tags: ["OAuth"]
---

# Delete/Revoke Tokens

`POST /oauth/revoke`

This endpoint allows clients to revoke an access or refresh token. Deleting/revoking a token will disconnect the Host from your application.

## Request body

- object
  - `client_id` string, required — The unique identifier for the client application requesting the token revocation.
  - `client_secret` string, required — The secret key associated with the client application, used to authenticate the revocation request.
  - `token` string, required — The access or refresh token to be revoked. Once revoked, the token cannot be used for further authentication.

## Response `200`

Successfully revoked the specified token.

- CommonResponse
  - `request_id` string, required — Unique identifier for the request.
  - `error_code` integer, required — Numeric error code representing the status of the response. A value of `200` indicates success. <br> See the [Error Codes](/reference/error-manual#error-codes) section for more information.
  - `error_msg` string, required — Message detailing the status of the response.

---

[API](https://skmtc.net/hostex/apis/hostex-api.md) · [All operations](https://skmtc.net/hostex/apis/hostex-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hostex/hostex-api/revisions/a3fa555dee66/schema)
