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

# Revoke an invite-only session

> Revoke the token supplied in X-VM2-Session. Does not remove membership or onchain assets.



## OpenAPI

````yaml /api-reference/vibemarket_openapi.json delete /access
openapi: 3.0.3
info:
  title: vibe.market API
  version: '2026-09-10'
  description: >-
    Consumer HTTP API for the current vibe.market at
    https://vibechain.com/market. This is an experimental protocol; review
    https://vibechain.com/terms. Public reads do not require Classic API keys.
    Discover runtime graphs rather than hardcoding a revision. The
    /api/vibemarket2 namespace is intentional. Operational provider webhooks and
    operator-only controls are excluded.
  termsOfService: https://vibechain.com/terms
servers:
  - url: https://build.vibechain.com/api/vibemarket2
    description: Current-market backend
security: []
tags:
  - name: Discovery
  - name: Indexed market
  - name: Board
  - name: Live updates
  - name: Creators
  - name: Artwork
  - name: Accounts
  - name: Community
  - name: Private messages
  - name: Scoped sessions
paths:
  /access:
    delete:
      tags:
        - Scoped sessions
      summary: Revoke an invite-only session
      description: >-
        Revoke the token supplied in X-VM2-Session. Does not remove membership
        or onchain assets.
      operationId: vm2058
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Ok'
        '503':
          description: Dependency or capacity unavailable. Retry with backoff.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - AccessSession: []
components:
  schemas:
    Ok:
      type: object
      properties:
        ok:
          type: boolean
      required:
        - ok
    Error:
      type: object
      properties:
        error:
          type: string
      required:
        - error
  securitySchemes:
    AccessSession:
      type: apiKey
      in: header
      name: X-VM2-Session
      description: Invite/access-only session; not a Classic API key.

````