Clients
Create Client
Create a new client
POST
Create Client
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Create a new 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>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
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>"
}
}