> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zype.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Revoke Access Token

This requests revokes an access token, removing the session from the active logins list.

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Consumer Authentication",
    "version": "1.0.0",
    "description": ""
  },
  "servers": [
    {
      "url": "https://login.zype.com"
    }
  ],
  "paths": {
    "/oauth/revoke": {
      "post": {
        "summary": "Revoke Access Token",
        "description": "This requests revokes an access token, removing the session from the active logins list.",
        "tags": [
          "Oauth"
        ],
        "requestBody": {
          "description": "",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "title": "TokenRevokeRequest",
                "type": "object",
                "required": [
                  "client_id",
                  "client_secret",
                  "token"
                ],
                "properties": {
                  "client_id": {
                    "type": "string"
                  },
                  "client_secret": {
                    "type": "string"
                  },
                  "token": {
                    "type": "string"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "The endpoint always returs 200"
          }
        }
      }
    }
  }
}
```