> ## 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.

# Reopen a conversation

> Reopens a closed conversation. A no-op if it is already open.

Rate limit: 60 requests per minute.



## OpenAPI

````yaml /api-reference/openapi.json post /api/v1/conversations/{conversationId}/reopen
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}/reopen:
    post:
      summary: Reopen a conversation
      description: |-
        Reopens a closed conversation. A no-op if it is already open.

        Rate limit: 60 requests per minute.
      operationId: reopenConversation
      parameters:
        - $ref: '#/components/parameters/conversationId'
      responses:
        '200':
          description: Reopen a conversation
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  conversationId:
                    type: string
                  status:
                    type: string
                    example: open
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_`.

````