Skip to main content
PUT
/
v1
/
company
Update Company
curl --request PUT \
  --url https://api.oviond.com/v1/company \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "company_name": "Acme Corp",
  "timezone": "America/New_York",
  "website": "https://acme.com",
  "address": "<string>",
  "state": "<string>",
  "city": "<string>",
  "zip": "<string>",
  "country": "<string>",
  "phone": "<string>"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json
company_name
string
required
Example:

"Acme Corp"

timezone
string
required
Example:

"America/New_York"

website
string<uri>
required
Example:

"https://acme.com"

address
string
state
string
city
string
zip
string
country
string
phone
string

Response

200 - application/json

Company settings updated

success
enum<boolean>
required
Available options:
true