Skip to main content
POST
/
v1
/
clients
Create Client
curl --request POST \
  --url https://api.oviond.com/v1/clients \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Acme Corp",
  "website": "https://acme.com",
  "currency": {
    "code": "USD",
    "symbol": "$",
    "iso": "US"
  },
  "timezone": "America/New_York",
  "first_name": "Sarah",
  "manager": "<string>",
  "domain_id": "<string>",
  "theme_id": "<string>",
  "folders": [
    "<string>"
  ]
}
'
{
  "success": true,
  "data": {
    "id": "<string>",
    "_id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required
Minimum string length: 1
Example:

"Acme Corp"

website
string
required
Example:

"https://acme.com"

currency
object
required
timezone
string
required
Example:

"America/New_York"

first_name
string
Example:

"Sarah"

manager
string
domain_id
string
theme_id
string
folders
string[]

Response

201 - application/json

Client created

success
enum<boolean>
required
Available options:
true
data
object
required