Skip to main content
PATCH
/
v1
/
admin
/
portfolio
/
{portfolio_id}
Update Portfolio Company
curl --request PATCH \
  --url https://api.ontora.com/v1/admin/portfolio/{portfolio_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "logo_url": "<string>",
  "website": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "logo_url": "<string>",
  "website": "<string>",
  "industry": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.ontora.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

portfolio_id
string<uuid>
required

Body

application/json
name
string | null
logo_url
string | null
website
string | null

Response

Successful Response

id
string
required
name
string
required
logo_url
string | null
required
website
string | null
required
industry
string | null
required