---
title: "Revoke an access_token"
method: POST
path: "/v1/auth/token/revoke"
tags: ["Authenticate"]
---

# Revoke an access_token

`POST /v1/auth/token/revoke`

You can use this endpoint to revoke an `access_token`.

## Request body

- RevokeTokenRequest — A structure representing a request to revoke a token.
  - `clientId` string, required — The client's id as obtained from your Nomba dashboard.
  - `access_token` string, required — The JWT (Json Web Token) token to be revoked

## Response `200`

Your request to revoke an access_token was successful.

- RevokeTokenResponse — A structure representing a response from an attempt to revoke a token
  - `code` string — Tells if the access_token has been revoked
  - `description` string — Describes the result of the action performed

## Other responses

- `400` — The request body sent by merchant did not pass the validation checks
- `401` — The access_token provided to access the resource is missing or invalid.
- `403` — The client does not have the permissions to access this resource
- `404` — The record that the client is trying to access does not exist.
- `429` — The client has maxed out the number of calls within a time period on this resource.
- `500` — Downstream system error.

---

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