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

# Stop Org Conversation

> Stop a running conversation and its runtime.

Safely terminates active agent loops and shuts down the underlying
runtime execution cell.

**Access Control**: Requires VIEW_ORG_CONVERSATIONS permission (Admin or Owner role).

Returns:
    Success message with stopped conversation details

Raises:
    HTTPException: 404 if conversation not found
    HTTPException: 409 if conversation is not running
    HTTPException: 503 if runtime stop fails



## OpenAPI

````yaml /openapi/openhands-cloud.json post /api/organizations/{org_id}/conversations/{conversation_id}/stop
openapi: 3.1.0
info:
  title: OpenHands
  description: 'OpenHands: Code Less, Make More'
  version: 0.0.1
servers: []
security: []
paths:
  /api/organizations/{org_id}/conversations/{conversation_id}/stop:
    post:
      tags:
        - Orgs
      summary: Stop Org Conversation
      description: >-
        Stop a running conversation and its runtime.


        Safely terminates active agent loops and shuts down the underlying

        runtime execution cell.


        **Access Control**: Requires VIEW_ORG_CONVERSATIONS permission (Admin or
        Owner role).


        Returns:
            Success message with stopped conversation details

        Raises:
            HTTPException: 404 if conversation not found
            HTTPException: 409 if conversation is not running
            HTTPException: 503 if runtime stop fails
      operationId: >-
        stop_org_conversation_api_organizations__org_id__conversations__conversation_id__stop_post
      parameters:
        - name: org_id
          in: path
          required: true
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            title: Org Id
        - name: conversation_id
          in: path
          required: true
          schema:
            type: string
            title: Conversation Id
        - name: X-Org-Id
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Org-Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-Access-Token

````