GET
/
publishers
/
{publisherId}
Retrieve a publisher by ID
curl --request GET \
  --url https://api.comfy.org/publishers/{publisherId}
{
  "createdAt": "2023-11-07T05:31:56Z",
  "description": "<string>",
  "id": "<string>",
  "logo": "<string>",
  "members": [
    {
      "id": "<string>",
      "role": "<string>",
      "user": {
        "email": "<string>",
        "id": "<string>",
        "name": "<string>"
      }
    }
  ],
  "name": "<string>",
  "source_code_repo": "<string>",
  "status": "PublisherStatusActive",
  "support": "<string>",
  "website": "<string>"
}

Path Parameters

publisherId
string
required

Response

200
application/json

Publisher retrieved successfully

The response is of type object.