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

# Revogar Sessão

> Revoga remotamente uma sessão ativa específica (desloga o usuário daquele dispositivo/navegador).

### Path

<ParamField path="id" type="string" required>
  O UUID da sessão que será revogada.
</ParamField>

### Response

<ResponseExample>
  ```json Response theme={null}
  {
    "message": "Sessão revogada com sucesso"
  }
  ```
</ResponseExample>


## OpenAPI

````yaml post /auth/sessions/{id}/revoke
openapi: 3.0.0
info:
  title: Hub Marketplace API
  description: API for managing marketplace listings and keys
  version: '1.0'
  contact: {}
servers: []
security: []
tags:
  - name: listings
    description: ''
paths:
  /auth/sessions/{id}/revoke:
    post:
      tags:
        - Auth
      operationId: AuthController_revokeSession
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '201':
          description: ''

````