Skip to main content
PUT
/
v1
/
projects
/
{id}
Update Project
curl --request PUT \
  --url https://api.oviond.com/v1/projects/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "theme_id": "<string>",
  "date_range": {
    "text": "Last 30 Days",
    "compare": "None",
    "include_today": false,
    "current_start": "2026-03-01",
    "current_end": "2026-03-31",
    "previous_start": "2026-02-01",
    "previous_end": "2026-02-28",
    "custom_days": 60,
    "custom_months": 3
  },
  "logo_url": "<string>",
  "auto_refresh_enabled": true,
  "show_cover_page": true,
  "show_cover_page_logo": true,
  "show_cover_page_name": true,
  "show_cover_page_date": true,
  "show_cover_page_bg_image": true,
  "show_header": true,
  "show_header_logo": true,
  "show_header_name": true,
  "show_header_date": true,
  "show_page_numbers": true,
  "show_table_of_contents": true,
  "show_date": true,
  "show_thank_you": true,
  "show_thank_you_bg_image": true,
  "show_thank_you_logo": true,
  "show_thank_you_heading": true,
  "show_thank_you_message": true,
  "pages": [
    {}
  ],
  "is_active": true,
  "editing": true,
  "description": "<string>",
  "status": "<string>",
  "auto_refresh_interval_hours": 12,
  "password_enabled": true,
  "password": "<string>",
  "pdf_enabled": true,
  "show_dashboard_navigation": true
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
name
string | null
theme_id
string | null
date_range
object
logo_url
string | null
auto_refresh_enabled
boolean | null
show_cover_page
boolean | null
show_cover_page_logo
boolean | null
show_cover_page_name
boolean | null
show_cover_page_date
boolean | null
show_cover_page_bg_image
boolean | null
show_header
boolean | null
show_header_logo
boolean | null
show_header_name
boolean | null
show_header_date
boolean | null
show_page_numbers
boolean | null
show_table_of_contents
boolean | null
show_date
boolean | null
show_thank_you
boolean | null
show_thank_you_bg_image
boolean | null
show_thank_you_logo
boolean | null
show_thank_you_heading
boolean | null
show_thank_you_message
boolean | null
orientation
enum<string> | null
Available options:
portrait,
landscape
pages
object[] | null
is_active
boolean | null
editing
boolean | null
description
string | null
status
string | null
auto_refresh_interval_hours
integer | null
Required range: 1 <= x <= 24
password_enabled
boolean | null
password
string | null
pdf_enabled
boolean | null
paper_size
enum<string> | null
Available options:
a4,
letter
branding_source
enum<string> | null
Available options:
inherit,
client,
agency
show_dashboard_navigation
boolean | null

Response

Project updated

success
enum<boolean>
required
Available options:
true