> ## Documentation Index
> Fetch the complete documentation index at: https://dripart-chore-sync-comfy-api-v2-spec-12fd5b4.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve permissions the user has for a given publisher



## OpenAPI

````yaml https://api.comfy.org/openapi get /publishers/{publisherId}/nodes/{nodeId}/permissions
openapi: 3.0.2
info:
  title: Comfy API
  version: '1.0'
servers:
  - url: https://api.comfy.org
security: []
tags:
  - description: >-
      Comfy Router's canonical, model-ID-addressed routes. Router endpoints
      carry this tag and never the `API Nodes` tag: `API Nodes` drives ComfyUI's
      Partner-Node Pydantic codegen off the provider-shaped `/proxy/*` surface,
      and reusing it would couple the Router contract to that generator. New
      Router routes belong here.
    name: Comfy Router
paths:
  /publishers/{publisherId}/nodes/{nodeId}/permissions:
    get:
      tags:
        - Registry
      summary: Retrieve permissions the user has for a given publisher
      operationId: GetPermissionOnPublisherNodes
      parameters:
        - in: path
          name: publisherId
          required: true
          schema:
            type: string
        - in: path
          name: nodeId
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  canEdit:
                    type: boolean
                type: object
          description: A list of permissions
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request, invalid input data
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Internal server error
components:
  schemas:
    ErrorResponse:
      properties:
        error:
          type: string
        message:
          type: string
      required:
        - error
        - message
      type: object

````