curl -X PATCH https://acme.orgo.space/api/v1/contacts/85 \
-H "Api-Token: $ORGO_API_TOKEN" \
-H "Content-Type: application/merge-patch+json" \
-d '{"isNewsletterSubscribed": true}'
await fetch("https://acme.orgo.space/api/v1/contacts/85", {
method: "PATCH",
headers: {
"Api-Token": process.env.ORGO_API_TOKEN,
"Content-Type": "application/merge-patch+json",
},
body: JSON.stringify({ isNewsletterSubscribed: true }),
});
$client->patch('/api/v1/contacts/85', [
'headers' => [
'Api-Token' => getenv('ORGO_API_TOKEN'),
'Content-Type' => 'application/merge-patch+json',
],
'body' => json_encode(['isNewsletterSubscribed' => true]),
]);
import requests
url = "https://app.orgo.space/api/v1/contacts/{id}"
payload = {
"isNewsletterSubscribed": True,
"notes": "Subscribed via January AGM follow-up email."
}
headers = {
"Api-Token": "<api-key>",
"Content-Type": "application/merge-patch+json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.orgo.space/api/v1/contacts/{id}"
payload := strings.NewReader("{\n \"isNewsletterSubscribed\": true,\n \"notes\": \"Subscribed via January AGM follow-up email.\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Api-Token", "<api-key>")
req.Header.Add("Content-Type", "application/merge-patch+json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://app.orgo.space/api/v1/contacts/{id}")
.header("Api-Token", "<api-key>")
.header("Content-Type", "application/merge-patch+json")
.body("{\n \"isNewsletterSubscribed\": true,\n \"notes\": \"Subscribed via January AGM follow-up email.\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.orgo.space/api/v1/contacts/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Api-Token"] = '<api-key>'
request["Content-Type"] = 'application/merge-patch+json'
request.body = "{\n \"isNewsletterSubscribed\": true,\n \"notes\": \"Subscribed via January AGM follow-up email.\"\n}"
response = http.request(request)
puts response.read_body{
"id": 85,
"name": "Olivia Brown",
"email": "olivia.brown@example.com",
"isNewsletterSubscribed": true,
"notes": "Subscribed via January AGM follow-up email.",
"dateUpdated": "2026-01-15T10:30:00+00:00"
}Update a contact
Updates contact fields and persists any custom field values from the request. Requires HR_LOCAL or FINANCIAL_LOCAL permission scoped to the contact local center.
curl -X PATCH https://acme.orgo.space/api/v1/contacts/85 \
-H "Api-Token: $ORGO_API_TOKEN" \
-H "Content-Type: application/merge-patch+json" \
-d '{"isNewsletterSubscribed": true}'
await fetch("https://acme.orgo.space/api/v1/contacts/85", {
method: "PATCH",
headers: {
"Api-Token": process.env.ORGO_API_TOKEN,
"Content-Type": "application/merge-patch+json",
},
body: JSON.stringify({ isNewsletterSubscribed: true }),
});
$client->patch('/api/v1/contacts/85', [
'headers' => [
'Api-Token' => getenv('ORGO_API_TOKEN'),
'Content-Type' => 'application/merge-patch+json',
],
'body' => json_encode(['isNewsletterSubscribed' => true]),
]);
import requests
url = "https://app.orgo.space/api/v1/contacts/{id}"
payload = {
"isNewsletterSubscribed": True,
"notes": "Subscribed via January AGM follow-up email."
}
headers = {
"Api-Token": "<api-key>",
"Content-Type": "application/merge-patch+json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.orgo.space/api/v1/contacts/{id}"
payload := strings.NewReader("{\n \"isNewsletterSubscribed\": true,\n \"notes\": \"Subscribed via January AGM follow-up email.\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Api-Token", "<api-key>")
req.Header.Add("Content-Type", "application/merge-patch+json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://app.orgo.space/api/v1/contacts/{id}")
.header("Api-Token", "<api-key>")
.header("Content-Type", "application/merge-patch+json")
.body("{\n \"isNewsletterSubscribed\": true,\n \"notes\": \"Subscribed via January AGM follow-up email.\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.orgo.space/api/v1/contacts/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Api-Token"] = '<api-key>'
request["Content-Type"] = 'application/merge-patch+json'
request.body = "{\n \"isNewsletterSubscribed\": true,\n \"notes\": \"Subscribed via January AGM follow-up email.\"\n}"
response = http.request(request)
puts response.read_body{
"id": 85,
"name": "Olivia Brown",
"email": "olivia.brown@example.com",
"isNewsletterSubscribed": true,
"notes": "Subscribed via January AGM follow-up email.",
"dateUpdated": "2026-01-15T10:30:00+00:00"
}Authorizations
Server-to-server authentication. Generate a token in the admin UI at
Settings → Developers → API Access. Send the raw token in the
Api-Token header — there is no Bearer prefix.
Tokens can be marked read-only at creation time, in which case the API
rejects any non-GET request with 403 Forbidden.
Path Parameters
Contact identifier
Body
The updated Contact resource
"/api/v1/countries/1"
"/api/v1/towns/1"
"/api/v1/local_centers/1"
["/api/v1/custom_field_values/1"]
"/api/v1/profile_statuses/1"
Response
Contact resource updated
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
"/api/v1/products/1"
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes

