Skip to main content
PUT
/
v1
/
clients
/
:id
Update Client
curl --request PUT \
  --url https://api.oviond.com/v1/clients/:id \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Acme Corp Updated",
  "first_name": "<string>",
  "website": "<string>",
  "timezone": "<string>",
  "manager": "<string>",
  "domain_id": "<string>",
  "theme_id": "<string>",
  "logo_url": "<string>",
  "favicon_url": "<string>",
  "folders": [
    "<string>"
  ]
}
'
{
  "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
Example:

"Acme Corp Updated"

first_name
string | null
website
string
currency
object
timezone
string
manager
string
domain_id
string
theme_id
string
logo_url
string | null
favicon_url
string | null
branding_source
enum<string> | null
Available options:
client,
agency
folders
string[]

Response

Client updated

success
enum<boolean>
required
Available options:
true