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

# 엔드포인트 중지



## OpenAPI

````yaml openapi-ko.json POST /endpoints/{endpoint_id}/stop
openapi: 3.1.0
info:
  title: AirCloud External API
  description: AirCloud 엔드포인트를 프로그래밍 방식으로 관리하는 REST API입니다.
  version: 1.0.0
  contact:
    name: support
    url: https://aieev.com
    email: support@aieev.cloud
servers:
  - url: https://external.aieev.cloud:5007/external/api/v1
security:
  - bearerAuth: []
tags:
  - name: Authentication
    description: API Key 인증 정보 확인
  - name: Endpoints
    description: '엔드포인트 관리: 조회, 시작, 중지, 스케일링, 설정 변경'
  - name: Replicas
    description: 레플리카 상태 조회
  - name: Logs
    description: 엔드포인트 로그 조회
paths:
  /endpoints/{endpoint_id}/stop:
    post:
      tags:
        - Endpoints
      summary: 엔드포인트 중지
      description: 활성 상태의 엔드포인트를 중지합니다.
      operationId: stopEndpoint
      parameters:
        - name: endpoint_id
          in: path
          required: true
          description: 엔드포인트 고유 ID
          schema:
            type: string
      responses:
        '200':
          description: 엔드포인트 중지 결과
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StartStopResponse'
              examples:
                stopped:
                  summary: 중지 성공
                  value:
                    endpoint_id: 51c910f7-ecde-4c6c-88f8-d8e37ca9d598
                    is_active: false
                    message: Endpoint stopped successfully
                already_stopped:
                  summary: 이미 중지 상태
                  value:
                    endpoint_id: 51c910f7-ecde-4c6c-88f8-d8e37ca9d598
                    is_active: false
                    message: Endpoint is already stopped
        '500':
          description: 중지 실패
components:
  schemas:
    StartStopResponse:
      type: object
      properties:
        endpoint_id:
          type: string
          description: 엔드포인트 고유 ID
          example: 51c910f7-ecde-4c6c-88f8-d8e37ca9d598
        is_active:
          type: boolean
          description: 작업 후 활성 상태
          example: true
        message:
          type: string
          description: 결과 메시지
          example: Endpoint started successfully
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API Key를 Bearer 토큰으로 전달합니다. 프로젝트 개요의 API 키 메뉴에서 생성할 수 있습니다.

````