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

# Close a conversation

> Marks a conversation as closed.

Rate limit: 60 requests per minute.



## OpenAPI

````yaml /api-reference/openapi.json post /api/v1/conversations/{conversationId}/close
openapi: 3.1.0
info:
  title: Adraa Inbox API
  description: >-
    Public REST API for Adraa Inbox. Assign agents to conversations and send
    messages from your own systems. Authenticate every request with a workspace
    API token.
  version: 1.0.0
  contact:
    email: support@adraa.ai
servers:
  - url: https://api.inbox.adraa.ai
    description: Production
security:
  - apiToken: []
paths:
  /api/v1/conversations/{conversationId}/close:
    post:
      summary: Close a conversation
      description: |-
        Marks a conversation as closed.

        Rate limit: 60 requests per minute.
      operationId: closeConversation
      parameters:
        - $ref: '#/components/parameters/conversationId'
      responses:
        '200':
          description: Close a conversation
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  conversationId:
                    type: string
                  status:
                    type: string
                    example: closed
components:
  parameters:
    conversationId:
      name: conversationId
      in: path
      required: true
      description: >-
        ID of the conversation. Visible in the console URL when a conversation
        is open:
        `app.inbox.adraa.ai/<workspace>/conversations/<conversationId>`, or list
        conversations with `GET /api/v1/conversations`.
      schema:
        type: string
        example: cmbxgz9pq0003ph01m4n5o6p7
  securitySchemes:
    apiToken:
      type: http
      scheme: bearer
      description: >-
        Workspace API token created in Settings → API. Tokens start with
        `adraa_`.

````