Clients
Create Client
Create a new client
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 Demo",
"website": "acme.com",
"timezone": "UTC",
"currency": {
"iso": "US",
"code": "USD",
"symbol": "$"
}
}
'import requests
url = "https://api.oviond.com/v1/clients"
payload = {
"name": "Acme Demo",
"website": "acme.com",
"timezone": "UTC",
"currency": {
"iso": "US",
"code": "USD",
"symbol": "$"
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'Acme Demo',
website: 'acme.com',
timezone: 'UTC',
currency: {iso: 'US', code: 'USD', symbol: '$'}
})
};
fetch('https://api.oviond.com/v1/clients', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.oviond.com/v1/clients",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Acme Demo',
'website' => 'acme.com',
'timezone' => 'UTC',
'currency' => [
'iso' => 'US',
'code' => 'USD',
'symbol' => '$'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.oviond.com/v1/clients"
payload := strings.NewReader("{\n \"name\": \"Acme Demo\",\n \"website\": \"acme.com\",\n \"timezone\": \"UTC\",\n \"currency\": {\n \"iso\": \"US\",\n \"code\": \"USD\",\n \"symbol\": \"$\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.oviond.com/v1/clients")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Acme Demo\",\n \"website\": \"acme.com\",\n \"timezone\": \"UTC\",\n \"currency\": {\n \"iso\": \"US\",\n \"code\": \"USD\",\n \"symbol\": \"$\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.oviond.com/v1/clients")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Acme Demo\",\n \"website\": \"acme.com\",\n \"timezone\": \"UTC\",\n \"currency\": {\n \"iso\": \"US\",\n \"code\": \"USD\",\n \"symbol\": \"$\"\n }\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"id": "<string>",
"_id": "<string>"
}
}Authorizations
ApiKeyAuthBearerAuth
Oviond API key (prefix oviond_) sent as a Bearer token — the credential for REST/programmatic and headless integrations. Manage keys in Settings → API Keys. API keys do NOT authenticate the MCP endpoint (/mcp), which uses OAuth 2.1 + PKCE.
Body
application/json
Minimum string length:
1Example:
"Acme Corp"
Example:
"https://acme.com"
ISO 4217 currency code (e.g. "USD") or a full { code, symbol, iso } object.
Show child attributes
Show child attributes
Example:
"America/New_York"
Example:
"Sarah"
BCP 47 locale driving number formatting, e.g. "en-US" → 1,234.56, "de-DE" → 1.234,56. Null/absent defaults to "en-US".
Example:
"en-US"
⌘I
Create Client
curl --request POST \
--url https://api.oviond.com/v1/clients \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Acme Demo",
"website": "acme.com",
"timezone": "UTC",
"currency": {
"iso": "US",
"code": "USD",
"symbol": "$"
}
}
'import requests
url = "https://api.oviond.com/v1/clients"
payload = {
"name": "Acme Demo",
"website": "acme.com",
"timezone": "UTC",
"currency": {
"iso": "US",
"code": "USD",
"symbol": "$"
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'Acme Demo',
website: 'acme.com',
timezone: 'UTC',
currency: {iso: 'US', code: 'USD', symbol: '$'}
})
};
fetch('https://api.oviond.com/v1/clients', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.oviond.com/v1/clients",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Acme Demo',
'website' => 'acme.com',
'timezone' => 'UTC',
'currency' => [
'iso' => 'US',
'code' => 'USD',
'symbol' => '$'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.oviond.com/v1/clients"
payload := strings.NewReader("{\n \"name\": \"Acme Demo\",\n \"website\": \"acme.com\",\n \"timezone\": \"UTC\",\n \"currency\": {\n \"iso\": \"US\",\n \"code\": \"USD\",\n \"symbol\": \"$\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.oviond.com/v1/clients")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Acme Demo\",\n \"website\": \"acme.com\",\n \"timezone\": \"UTC\",\n \"currency\": {\n \"iso\": \"US\",\n \"code\": \"USD\",\n \"symbol\": \"$\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.oviond.com/v1/clients")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Acme Demo\",\n \"website\": \"acme.com\",\n \"timezone\": \"UTC\",\n \"currency\": {\n \"iso\": \"US\",\n \"code\": \"USD\",\n \"symbol\": \"$\"\n }\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"id": "<string>",
"_id": "<string>"
}
}