Skip to main content
PUT
/
api
/
v1
/
projects
/
{projectId}
curl --request PUT \
  --url https://app.finseo.ai/api/v1/projects/67a1c2d3e4f5061728394a5b \
  --header 'Authorization: Bearer sk_live_xxxxxxxx' \
  --header 'Content-Type: application/json' \
  --data '{"name": "Finseo — Growth", "description": "Primary Finseo GTM project"}'
{
  "data": {
    "id": "67a1c2d3e4f5061728394a5b",
    "updated": true
  }
}
Updates an existing project. Send only the fields you want to change.
projectId
string
required
Project identifier.
name
string
New display name (1–200 characters).
websiteUrl
string
Updated canonical URL.
domain
string
Updated root domain.
description
string
Updated description (max 500 characters).
curl --request PUT \
  --url https://app.finseo.ai/api/v1/projects/67a1c2d3e4f5061728394a5b \
  --header 'Authorization: Bearer sk_live_xxxxxxxx' \
  --header 'Content-Type: application/json' \
  --data '{"name": "Finseo — Growth", "description": "Primary Finseo GTM project"}'
{
  "data": {
    "id": "67a1c2d3e4f5061728394a5b",
    "updated": true
  }
}