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

# Rename Catalog

> Rename a catalog. The only mutable field is the display name — catalog membership is managed through [Add catalog songs](/api-reference/songs/catalog-songs-add) and [Remove catalog songs](/api-reference/songs/catalog-songs-delete).

Catalogs created by [Run valuation](/api-reference/songs/valuation-run) are named after the measured artist. Catalogs created before that shipped are all named `Valuation Catalog` — this endpoint is how you give them real names.



## OpenAPI

````yaml api-reference/openapi/releases.json PATCH /api/catalogs/{catalogId}
openapi: 3.1.0
info:
  title: Recoup API - Releases
  description: >-
    API documentation for the Recoup platform - an AI agent platform for the
    music industry
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.recoupable.dev
security: []
paths:
  /api/catalogs/{catalogId}:
    patch:
      description: >-
        Rename a catalog. The only mutable field is the display name — catalog
        membership is managed through [Add catalog
        songs](/api-reference/songs/catalog-songs-add) and [Remove catalog
        songs](/api-reference/songs/catalog-songs-delete).


        Catalogs created by [Run valuation](/api-reference/songs/valuation-run)
        are named after the measured artist. Catalogs created before that
        shipped are all named `Valuation Catalog` — this endpoint is how you
        give them real names.
      parameters:
        - name: catalogId
          in: path
          description: ID of the catalog to rename.
          required: true
          schema:
            type: string
            format: uuid
      requestBody:
        description: The new catalog name.
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateCatalogRequest'
      responses:
        '200':
          description: Catalog renamed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateCatalogResponse'
        '400':
          description: >-
            Bad request - catalogId is not a valid UUID, or name is missing or
            empty
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogsErrorResponse'
        '401':
          description: Unauthorized - missing or invalid credentials
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogsErrorResponse'
        '404':
          description: >-
            Catalog not found - no catalog with this ID is visible to the
            caller. A catalog that exists but belongs to neither the
            authenticated account nor one of its organizations returns 404, not
            403: the same visibility rule the catalog read paths use, so a
            catalog you cannot see is indistinguishable from one that does not
            exist.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogsErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogsErrorResponse'
      security:
        - apiKeyAuth: []
        - bearerAuth: []
components:
  schemas:
    UpdateCatalogRequest:
      type: object
      description: Request body for renaming a catalog.
      required:
        - name
      properties:
        name:
          type: string
          minLength: 1
          description: New display name for the catalog. Must not be empty.
    UpdateCatalogResponse:
      type: object
      description: Response returned after renaming a catalog
      required:
        - status
        - catalog
      properties:
        status:
          type: string
          enum:
            - success
          description: Status of the request
        catalog:
          $ref: '#/components/schemas/Catalog'
    CatalogsErrorResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - error
          description: Status of the request
        error:
          type: string
          description: Error message describing what went wrong
    Catalog:
      type: object
      description: A catalog with its metadata
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the catalog
        name:
          type: string
          description: Name of the catalog
        created_at:
          type: string
          format: date-time
          description: ISO timestamp of when the catalog was created
        updated_at:
          type: string
          format: date-time
          description: ISO timestamp of when the catalog was last updated
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Your Recoup API key. [Learn more](/quickstart#api-keys).
    bearerAuth:
      type: http
      scheme: bearer

````