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

# Update Project

> Update a project.



## OpenAPI

````yaml https://api.oviond.com/openapi.json put /v1/projects/{id}
openapi: 3.1.0
info:
  title: Oviond Backend API
  version: 1.0.0
  description: Authentication, account management, billing, and media services for Oviond.
  x-logo:
    url: https://app.oviond.com/img/oviond-full-logo.svg
    altText: Oviond
servers:
  - url: https://api.oviond.com
    description: Production
security:
  - ApiKeyAuth: []
  - BearerAuth: []
paths:
  /v1/projects/{id}:
    put:
      tags:
        - Projects
      summary: Update Project
      description: Update a project.
      operationId: update_project
      parameters:
        - schema:
            type: string
          required: true
          name: id
          in: path
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateProjectRequest'
      responses:
        '200':
          description: Project updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessResponse'
        '404':
          description: Project not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
components:
  schemas:
    UpdateProjectRequest:
      type: object
      properties:
        name:
          type:
            - string
            - 'null'
        theme_id:
          type:
            - string
            - 'null'
        date_range:
          allOf:
            - $ref: '#/components/schemas/DateRange'
            - type:
                - object
                - 'null'
        logo_url:
          type:
            - string
            - 'null'
        auto_refresh_enabled:
          type:
            - boolean
            - 'null'
        show_cover_page:
          type:
            - boolean
            - 'null'
        show_cover_page_logo:
          type:
            - boolean
            - 'null'
        show_cover_page_client_logo:
          type:
            - boolean
            - 'null'
        show_cover_page_agency_logo:
          type:
            - boolean
            - 'null'
        show_cover_page_name:
          type:
            - boolean
            - 'null'
        show_cover_page_date:
          type:
            - boolean
            - 'null'
        show_cover_page_bg_image:
          type:
            - boolean
            - 'null'
        show_header:
          type:
            - boolean
            - 'null'
        show_header_logo:
          type:
            - boolean
            - 'null'
        show_header_name:
          type:
            - boolean
            - 'null'
        show_header_date:
          type:
            - boolean
            - 'null'
        show_page_numbers:
          type:
            - boolean
            - 'null'
        show_table_of_contents:
          type:
            - boolean
            - 'null'
        show_date:
          type:
            - boolean
            - 'null'
        show_thank_you:
          type:
            - boolean
            - 'null'
        show_thank_you_bg_image:
          type:
            - boolean
            - 'null'
        show_thank_you_logo:
          type:
            - boolean
            - 'null'
        show_thank_you_client_logo:
          type:
            - boolean
            - 'null'
        show_thank_you_agency_logo:
          type:
            - boolean
            - 'null'
        show_thank_you_heading:
          type:
            - boolean
            - 'null'
        show_thank_you_message:
          type:
            - boolean
            - 'null'
        orientation:
          type:
            - string
            - 'null'
          enum:
            - portrait
            - landscape
        pages:
          type:
            - array
            - 'null'
          items:
            type: object
            additionalProperties: {}
        is_active:
          type:
            - boolean
            - 'null'
        editing:
          type:
            - boolean
            - 'null'
        description:
          type:
            - string
            - 'null'
        status:
          type:
            - string
            - 'null'
        auto_refresh_interval_hours:
          anyOf:
            - type: number
              enum:
                - 1
            - type: number
              enum:
                - 24
            - type: 'null'
          description: 'Auto-refresh cadence: 1 = hourly, 24 = daily'
          example: 24
        password_enabled:
          type:
            - boolean
            - 'null'
        password:
          type:
            - string
            - 'null'
        pdf_enabled:
          type:
            - boolean
            - 'null'
        paper_size:
          type:
            - string
            - 'null'
          enum:
            - a4
            - letter
        branding_source:
          type:
            - string
            - 'null'
          enum:
            - inherit
            - client
            - agency
        show_dashboard_navigation:
          type:
            - boolean
            - 'null'
    SuccessResponse:
      type: object
      properties:
        success:
          type: boolean
          enum:
            - true
      required:
        - success
    DateRange:
      type: object
      properties:
        text:
          type: string
          enum:
            - Today
            - Yesterday
            - Last 7 Days
            - Last 30 Days
            - Last 60 Days
            - Custom Days
            - This Month
            - Last Month
            - Custom Months
            - Last 2 Months
            - Last 3 Months
            - Last 12 Months
            - This Year
            - Last Year
            - Custom
          example: Last 30 Days
        compare:
          type: string
          enum:
            - None
            - Period
            - Month
            - Year
            - Custom
          example: None
        include_today:
          type: boolean
          example: false
        current_start:
          type: string
          example: '2026-03-01'
        current_end:
          type: string
          example: '2026-03-31'
        previous_start:
          type: string
          example: '2026-02-01'
        previous_end:
          type: string
          example: '2026-02-28'
        custom_days:
          type: number
          example: 60
        custom_months:
          type: number
          example: 3
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      description: >-
        Oviond API key (prefix `oviond_`) sent as a Bearer token — the
        credential for REST/programmatic and headless integrations. Manage keys
        in Settings → API Keys. API keys do NOT authenticate the MCP endpoint
        (/mcp), which uses OAuth 2.1 + PKCE.
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Supabase-issued JWT used by the Oviond web app session. External API
        consumers should authenticate with an Oviond API key (ApiKeyAuth)
        instead.

````