> ## Documentation Index
> Fetch the complete documentation index at: https://dripart-feat-openapi-i18n.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 인증된 배포자의 publisherId에 nodeId 요청

> 이 엔드포인트를 통해 배포자는 자신이 저장소를 소유하고 있는 nodeId로 식별되는 클레임되지 않은 노드를 클레임할 수 있습니다. 클레임되지 않은 노드의 저장소는 인증된 사용자가 소유해야 합니다.




## OpenAPI

````yaml /openapi/registry.ko.yaml post /publishers/{publisherId}/nodes/{nodeId}/claim-my-node
openapi: 3.0.2
info:
  title: Comfy API
  version: '1.0'
servers:
  - url: https://api.comfy.org
security: []
paths:
  /publishers/{publisherId}/nodes/{nodeId}/claim-my-node:
    post:
      tags:
        - Registry
      summary: 인증된 배포자의 publisherId에 nodeId 요청
      description: >
        이 엔드포인트를 통해 배포자는 자신이 저장소를 소유하고 있는 nodeId로 식별되는 클레임되지 않은 노드를 클레임할 수 있습니다.
        클레임되지 않은 노드의 저장소는 인증된 사용자가 소유해야 합니다.
      operationId: ClaimMyNode
      parameters:
        - in: path
          name: publisherId
          required: true
          schema:
            type: string
        - in: path
          name: nodeId
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ClaimMyNodeRequest'
        required: true
      responses:
        '204':
          description: 노드가 성공적으로 요청되었습니다
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: 잘못된 요청, 잘못된 입력 데이터
        '401':
          description: 권한이 없음
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: |
            금지됨 - 다양한 인증 및 권한 문제
            포함:
            - 인증된 사용자에게 노드를 요청할 권한이 없음
            - 다른 배포자가 이미 노드를 요청함
            - GH_TOKEN이 유효하지 않음
            - 저장소가 인증된 GitHub 사용자의 소유가 아님
        '429':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: 너무 많은 요청 - GitHub API 속도 제한 초과
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: 내부 서버 오류
        '503':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: 서비스를 사용할 수 없음 - GitHub API를 현재 사용할 수 없음
      security:
        - BearerAuth: []
components:
  schemas:
    ClaimMyNodeRequest:
      properties:
        GH_TOKEN:
          description: 사용자가 노드의 리포지토리를 소유하고 있는지 확인하는 GitHub 토큰
          type: string
      required:
        - GH_TOKEN
      type: object
    ErrorResponse:
      properties:
        error:
          type: string
        message:
          type: string
      required:
        - error
        - message
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http

````