Skip to main content
PATCH
/
v1
/
admin
/
companies
/
{company_id}
Update Company
curl --request PATCH \
  --url https://api.ontora.com/v1/admin/companies/{company_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "logo_url": "<string>",
  "status": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "slug": "<string>",
  "logo_url": "<string>",
  "status": "<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

company_id
string<uuid>
required

Body

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

Response

Successful Response

id
string
required
name
string
required
slug
string
required
logo_url
string | null
required
status
string
required