Clients
Update Client
Update a client
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>",
"currency": {
"code": "USD",
"symbol": "$",
"iso": "US"
},
"number_format": "en-US",
"timezone": "America/New_York",
"manager": "<string>",
"domain_id": "<string>",
"theme_id": "<string>",
"logo_url": "<string>",
"favicon_url": "<string>",
"folders": [
"<string>"
]
}
'import requests
url = "https://api.oviond.com/v1/clients/{id}"
payload = {
"name": "Acme Corp Updated",
"first_name": "<string>",
"website": "<string>",
"currency": {
"code": "USD",
"symbol": "$",
"iso": "US"
},
"number_format": "en-US",
"timezone": "America/New_York",
"manager": "<string>",
"domain_id": "<string>",
"theme_id": "<string>",
"logo_url": "<string>",
"favicon_url": "<string>",
"folders": ["<string>"]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'Acme Corp Updated',
first_name: '<string>',
website: '<string>',
currency: {code: 'USD', symbol: '$', iso: 'US'},
number_format: 'en-US',
timezone: 'America/New_York',
manager: '<string>',
domain_id: '<string>',
theme_id: '<string>',
logo_url: '<string>',
favicon_url: '<string>',
folders: ['<string>']
})
};
fetch('https://api.oviond.com/v1/clients/{id}', 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/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Acme Corp Updated',
'first_name' => '<string>',
'website' => '<string>',
'currency' => [
'code' => 'USD',
'symbol' => '$',
'iso' => 'US'
],
'number_format' => 'en-US',
'timezone' => 'America/New_York',
'manager' => '<string>',
'domain_id' => '<string>',
'theme_id' => '<string>',
'logo_url' => '<string>',
'favicon_url' => '<string>',
'folders' => [
'<string>'
]
]),
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/{id}"
payload := strings.NewReader("{\n \"name\": \"Acme Corp Updated\",\n \"first_name\": \"<string>\",\n \"website\": \"<string>\",\n \"currency\": {\n \"code\": \"USD\",\n \"symbol\": \"$\",\n \"iso\": \"US\"\n },\n \"number_format\": \"en-US\",\n \"timezone\": \"America/New_York\",\n \"manager\": \"<string>\",\n \"domain_id\": \"<string>\",\n \"theme_id\": \"<string>\",\n \"logo_url\": \"<string>\",\n \"favicon_url\": \"<string>\",\n \"folders\": [\n \"<string>\"\n ]\n}")
req, _ := http.NewRequest("PUT", 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.put("https://api.oviond.com/v1/clients/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Acme Corp Updated\",\n \"first_name\": \"<string>\",\n \"website\": \"<string>\",\n \"currency\": {\n \"code\": \"USD\",\n \"symbol\": \"$\",\n \"iso\": \"US\"\n },\n \"number_format\": \"en-US\",\n \"timezone\": \"America/New_York\",\n \"manager\": \"<string>\",\n \"domain_id\": \"<string>\",\n \"theme_id\": \"<string>\",\n \"logo_url\": \"<string>\",\n \"favicon_url\": \"<string>\",\n \"folders\": [\n \"<string>\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.oviond.com/v1/clients/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Acme Corp Updated\",\n \"first_name\": \"<string>\",\n \"website\": \"<string>\",\n \"currency\": {\n \"code\": \"USD\",\n \"symbol\": \"$\",\n \"iso\": \"US\"\n },\n \"number_format\": \"en-US\",\n \"timezone\": \"America/New_York\",\n \"manager\": \"<string>\",\n \"domain_id\": \"<string>\",\n \"theme_id\": \"<string>\",\n \"logo_url\": \"<string>\",\n \"favicon_url\": \"<string>\",\n \"folders\": [\n \"<string>\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true
}{
"error": "<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.
Path Parameters
Body
application/json
Example:
"Acme Corp Updated"
ISO 4217 currency code (e.g. "USD") or a full { code, symbol, iso } object.
Show child attributes
Show child attributes
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"
Example:
"America/New_York"
Available options:
client, agency Response
Client updated
Available options:
true ⌘I
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>",
"currency": {
"code": "USD",
"symbol": "$",
"iso": "US"
},
"number_format": "en-US",
"timezone": "America/New_York",
"manager": "<string>",
"domain_id": "<string>",
"theme_id": "<string>",
"logo_url": "<string>",
"favicon_url": "<string>",
"folders": [
"<string>"
]
}
'import requests
url = "https://api.oviond.com/v1/clients/{id}"
payload = {
"name": "Acme Corp Updated",
"first_name": "<string>",
"website": "<string>",
"currency": {
"code": "USD",
"symbol": "$",
"iso": "US"
},
"number_format": "en-US",
"timezone": "America/New_York",
"manager": "<string>",
"domain_id": "<string>",
"theme_id": "<string>",
"logo_url": "<string>",
"favicon_url": "<string>",
"folders": ["<string>"]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'Acme Corp Updated',
first_name: '<string>',
website: '<string>',
currency: {code: 'USD', symbol: '$', iso: 'US'},
number_format: 'en-US',
timezone: 'America/New_York',
manager: '<string>',
domain_id: '<string>',
theme_id: '<string>',
logo_url: '<string>',
favicon_url: '<string>',
folders: ['<string>']
})
};
fetch('https://api.oviond.com/v1/clients/{id}', 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/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Acme Corp Updated',
'first_name' => '<string>',
'website' => '<string>',
'currency' => [
'code' => 'USD',
'symbol' => '$',
'iso' => 'US'
],
'number_format' => 'en-US',
'timezone' => 'America/New_York',
'manager' => '<string>',
'domain_id' => '<string>',
'theme_id' => '<string>',
'logo_url' => '<string>',
'favicon_url' => '<string>',
'folders' => [
'<string>'
]
]),
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/{id}"
payload := strings.NewReader("{\n \"name\": \"Acme Corp Updated\",\n \"first_name\": \"<string>\",\n \"website\": \"<string>\",\n \"currency\": {\n \"code\": \"USD\",\n \"symbol\": \"$\",\n \"iso\": \"US\"\n },\n \"number_format\": \"en-US\",\n \"timezone\": \"America/New_York\",\n \"manager\": \"<string>\",\n \"domain_id\": \"<string>\",\n \"theme_id\": \"<string>\",\n \"logo_url\": \"<string>\",\n \"favicon_url\": \"<string>\",\n \"folders\": [\n \"<string>\"\n ]\n}")
req, _ := http.NewRequest("PUT", 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.put("https://api.oviond.com/v1/clients/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Acme Corp Updated\",\n \"first_name\": \"<string>\",\n \"website\": \"<string>\",\n \"currency\": {\n \"code\": \"USD\",\n \"symbol\": \"$\",\n \"iso\": \"US\"\n },\n \"number_format\": \"en-US\",\n \"timezone\": \"America/New_York\",\n \"manager\": \"<string>\",\n \"domain_id\": \"<string>\",\n \"theme_id\": \"<string>\",\n \"logo_url\": \"<string>\",\n \"favicon_url\": \"<string>\",\n \"folders\": [\n \"<string>\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.oviond.com/v1/clients/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Acme Corp Updated\",\n \"first_name\": \"<string>\",\n \"website\": \"<string>\",\n \"currency\": {\n \"code\": \"USD\",\n \"symbol\": \"$\",\n \"iso\": \"US\"\n },\n \"number_format\": \"en-US\",\n \"timezone\": \"America/New_York\",\n \"manager\": \"<string>\",\n \"domain_id\": \"<string>\",\n \"theme_id\": \"<string>\",\n \"logo_url\": \"<string>\",\n \"favicon_url\": \"<string>\",\n \"folders\": [\n \"<string>\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true
}{
"error": "<string>"
}