---
title: "Revoke tokens"
method: DELETE
path: "/oauth2/tokens"
tags: ["OAuth API"]
---

# Revoke tokens

`DELETE /oauth2/tokens`

Revoke an access token or refresh token. Once revoked, the token can no longer be used.

Revoking a refresh token revokes all access tokens that were created using the same authorization.

This endpoint can only be accessed using **OAuth client credentials**.

## Headers

- `Authorization` string, required
- `Content-Type` string
- `idempotency-key` string

## Request body

- object
  - `token_type_hint` 'access_token' | 'refresh_token', required
  - `token` string, required — The token you want to revoke.

## Response `204`

An empty response.

## Other responses

- `429` — Rate Limit has been reached.

---

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