cURL
curl -X PATCH https://acme.orgo.space/api/v1/newsletters/01938d8e-c2f4-7c2a-b8e1-3f7a9b8c4f44/send \
-H "Api-Token: $ORGO_API_TOKEN" \
-H "Content-Type: application/merge-patch+json" \
-d '{}'const uuid = "01938d8e-c2f4-7c2a-b8e1-3f7a9b8c4f44";
await fetch(`https://acme.orgo.space/api/v1/newsletters/${uuid}/send`, {
method: "PATCH",
headers: {
"Api-Token": process.env.ORGO_API_TOKEN,
"Content-Type": "application/merge-patch+json",
},
body: "{}",
});
$uuid = '01938d8e-c2f4-7c2a-b8e1-3f7a9b8c4f44';
$client->patch("/api/v1/newsletters/{$uuid}/send", [
'headers' => [
'Api-Token' => getenv('ORGO_API_TOKEN'),
'Content-Type' => 'application/merge-patch+json',
],
'body' => '{}',
]);
import requests
url = "https://app.orgo.space/api/v1/newsletters/{uuid}/send"
payload = {}
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/newsletters/{uuid}/send"
payload := strings.NewReader("{}")
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/newsletters/{uuid}/send")
.header("Api-Token", "<api-key>")
.header("Content-Type", "application/merge-patch+json")
.body("{}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.orgo.space/api/v1/newsletters/{uuid}/send")
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 = "{}"
response = http.request(request)
puts response.read_body{
"id": 44,
"uuid": "01938d8e-c2f4-7c2a-b8e1-3f7a9b8c4f44",
"name": "January 2026 — Boston Update",
"status": "SENT",
"dateSent": "2026-01-15T10:30:00+00:00",
"estimatedRecipientCount": 312
}Newsletter
Updates the Newsletter resource.
Updates the Newsletter resource.
PATCH
/
api
/
v1
/
newsletters
/
{uuid}
/
send
cURL
curl -X PATCH https://acme.orgo.space/api/v1/newsletters/01938d8e-c2f4-7c2a-b8e1-3f7a9b8c4f44/send \
-H "Api-Token: $ORGO_API_TOKEN" \
-H "Content-Type: application/merge-patch+json" \
-d '{}'const uuid = "01938d8e-c2f4-7c2a-b8e1-3f7a9b8c4f44";
await fetch(`https://acme.orgo.space/api/v1/newsletters/${uuid}/send`, {
method: "PATCH",
headers: {
"Api-Token": process.env.ORGO_API_TOKEN,
"Content-Type": "application/merge-patch+json",
},
body: "{}",
});
$uuid = '01938d8e-c2f4-7c2a-b8e1-3f7a9b8c4f44';
$client->patch("/api/v1/newsletters/{$uuid}/send", [
'headers' => [
'Api-Token' => getenv('ORGO_API_TOKEN'),
'Content-Type' => 'application/merge-patch+json',
],
'body' => '{}',
]);
import requests
url = "https://app.orgo.space/api/v1/newsletters/{uuid}/send"
payload = {}
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/newsletters/{uuid}/send"
payload := strings.NewReader("{}")
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/newsletters/{uuid}/send")
.header("Api-Token", "<api-key>")
.header("Content-Type", "application/merge-patch+json")
.body("{}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.orgo.space/api/v1/newsletters/{uuid}/send")
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 = "{}"
response = http.request(request)
puts response.read_body{
"id": 44,
"uuid": "01938d8e-c2f4-7c2a-b8e1-3f7a9b8c4f44",
"name": "January 2026 — Boston Update",
"status": "SENT",
"dateSent": "2026-01-15T10:30:00+00:00",
"estimatedRecipientCount": 312
}Authorizations
ApiTokenJWT
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
Newsletter identifier
Body
application/merge-patch+json
The updated Newsletter resource
Example:
"/api/v1/users/1"
Example:
"/api/v1/units/1"
Example:
"/api/v1/local_centers/1"
Example:
"/api/v1/events/1"
Example:
"/api/v1/user_lists/1"
Response
Newsletter resource updated
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Example:
"/api/v1/tenants/1"
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes

