curl --request PATCH \
--url https://app.orgo.space/api/v1/products/{uuid} \
--header 'Api-Token: <api-key>' \
--header 'Content-Type: application/merge-patch+json' \
--data '
{
"name": "Boston Chapter",
"nameEn": "Boston Chapter",
"localCenter": "/api/v1/local_centers/1",
"organisation": "/api/v1/tenants/1",
"isExternal": true,
"isInternal": true,
"hasCustomPriceValue": true,
"monthPeriod": 1,
"customMinPrice": 5000,
"isArchived": false,
"hasSubscription": true,
"hasOneTimePayment": true,
"goalValue": 42,
"cycleDay": 15,
"cycleMonth": 1,
"cycleHasProratio": true,
"maxDate": "2026-01-15T10:30:00+00:00",
"proratioMinMonthsEnabler": 1,
"description": "Quarterly chapter meeting open to all members.",
"descriptionEn": "Quarterly chapter meeting open to all members.",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"settings": [
"string"
],
"descriptionInternal": "Quarterly chapter meeting open to all members.",
"cycleRecurrences": 42,
"hasConfidentialityEnabled": true,
"customMaxPrice": 5000,
"event": "/api/v1/events/1",
"startingDate": "2026-01-15T10:30:00+00:00",
"type": "MEMBER",
"goalValueSubscription": 42,
"hasLocalCenterOption": true,
"abTestingEnabled": true,
"slug": "annual-general-meeting-2026",
"displayOnProfile": true,
"productPriceVariations": [
"/api/v1/product_price_variations/1"
],
"metaGraphImage": "https://cdn.orgo.space/events/12/cover.jpg",
"heroVideoUrl": "https://civic-collective.example.com",
"thankYouMessage": "Looking forward to seeing you at the meeting.",
"descriptionDe": "Quarterly chapter meeting open to all members."
}
'import requests
url = "https://app.orgo.space/api/v1/products/{uuid}"
payload = {
"name": "Boston Chapter",
"nameEn": "Boston Chapter",
"localCenter": "/api/v1/local_centers/1",
"organisation": "/api/v1/tenants/1",
"isExternal": True,
"isInternal": True,
"hasCustomPriceValue": True,
"monthPeriod": 1,
"customMinPrice": 5000,
"isArchived": False,
"hasSubscription": True,
"hasOneTimePayment": True,
"goalValue": 42,
"cycleDay": 15,
"cycleMonth": 1,
"cycleHasProratio": True,
"maxDate": "2026-01-15T10:30:00+00:00",
"proratioMinMonthsEnabler": 1,
"description": "Quarterly chapter meeting open to all members.",
"descriptionEn": "Quarterly chapter meeting open to all members.",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"settings": ["string"],
"descriptionInternal": "Quarterly chapter meeting open to all members.",
"cycleRecurrences": 42,
"hasConfidentialityEnabled": True,
"customMaxPrice": 5000,
"event": "/api/v1/events/1",
"startingDate": "2026-01-15T10:30:00+00:00",
"type": "MEMBER",
"goalValueSubscription": 42,
"hasLocalCenterOption": True,
"abTestingEnabled": True,
"slug": "annual-general-meeting-2026",
"displayOnProfile": True,
"productPriceVariations": ["/api/v1/product_price_variations/1"],
"metaGraphImage": "https://cdn.orgo.space/events/12/cover.jpg",
"heroVideoUrl": "https://civic-collective.example.com",
"thankYouMessage": "Looking forward to seeing you at the meeting.",
"descriptionDe": "Quarterly chapter meeting open to all members."
}
headers = {
"Api-Token": "<api-key>",
"Content-Type": "application/merge-patch+json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'Api-Token': '<api-key>', 'Content-Type': 'application/merge-patch+json'},
body: JSON.stringify({
name: 'Boston Chapter',
nameEn: 'Boston Chapter',
localCenter: '/api/v1/local_centers/1',
organisation: '/api/v1/tenants/1',
isExternal: true,
isInternal: true,
hasCustomPriceValue: true,
monthPeriod: 1,
customMinPrice: 5000,
isArchived: false,
hasSubscription: true,
hasOneTimePayment: true,
goalValue: 42,
cycleDay: 15,
cycleMonth: 1,
cycleHasProratio: true,
maxDate: '2026-01-15T10:30:00+00:00',
proratioMinMonthsEnabler: 1,
description: 'Quarterly chapter meeting open to all members.',
descriptionEn: 'Quarterly chapter meeting open to all members.',
logo: 'https://cdn.orgo.space/tenants/acme/logo.png',
settings: ['string'],
descriptionInternal: 'Quarterly chapter meeting open to all members.',
cycleRecurrences: 42,
hasConfidentialityEnabled: true,
customMaxPrice: 5000,
event: '/api/v1/events/1',
startingDate: '2026-01-15T10:30:00+00:00',
type: 'MEMBER',
goalValueSubscription: 42,
hasLocalCenterOption: true,
abTestingEnabled: true,
slug: 'annual-general-meeting-2026',
displayOnProfile: true,
productPriceVariations: ['/api/v1/product_price_variations/1'],
metaGraphImage: 'https://cdn.orgo.space/events/12/cover.jpg',
heroVideoUrl: 'https://civic-collective.example.com',
thankYouMessage: 'Looking forward to seeing you at the meeting.',
descriptionDe: 'Quarterly chapter meeting open to all members.'
})
};
fetch('https://app.orgo.space/api/v1/products/{uuid}', 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://app.orgo.space/api/v1/products/{uuid}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Boston Chapter',
'nameEn' => 'Boston Chapter',
'localCenter' => '/api/v1/local_centers/1',
'organisation' => '/api/v1/tenants/1',
'isExternal' => true,
'isInternal' => true,
'hasCustomPriceValue' => true,
'monthPeriod' => 1,
'customMinPrice' => 5000,
'isArchived' => false,
'hasSubscription' => true,
'hasOneTimePayment' => true,
'goalValue' => 42,
'cycleDay' => 15,
'cycleMonth' => 1,
'cycleHasProratio' => true,
'maxDate' => '2026-01-15T10:30:00+00:00',
'proratioMinMonthsEnabler' => 1,
'description' => 'Quarterly chapter meeting open to all members.',
'descriptionEn' => 'Quarterly chapter meeting open to all members.',
'logo' => 'https://cdn.orgo.space/tenants/acme/logo.png',
'settings' => [
'string'
],
'descriptionInternal' => 'Quarterly chapter meeting open to all members.',
'cycleRecurrences' => 42,
'hasConfidentialityEnabled' => true,
'customMaxPrice' => 5000,
'event' => '/api/v1/events/1',
'startingDate' => '2026-01-15T10:30:00+00:00',
'type' => 'MEMBER',
'goalValueSubscription' => 42,
'hasLocalCenterOption' => true,
'abTestingEnabled' => true,
'slug' => 'annual-general-meeting-2026',
'displayOnProfile' => true,
'productPriceVariations' => [
'/api/v1/product_price_variations/1'
],
'metaGraphImage' => 'https://cdn.orgo.space/events/12/cover.jpg',
'heroVideoUrl' => 'https://civic-collective.example.com',
'thankYouMessage' => 'Looking forward to seeing you at the meeting.',
'descriptionDe' => 'Quarterly chapter meeting open to all members.'
]),
CURLOPT_HTTPHEADER => [
"Api-Token: <api-key>",
"Content-Type: application/merge-patch+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://app.orgo.space/api/v1/products/{uuid}"
payload := strings.NewReader("{\n \"name\": \"Boston Chapter\",\n \"nameEn\": \"Boston Chapter\",\n \"localCenter\": \"/api/v1/local_centers/1\",\n \"organisation\": \"/api/v1/tenants/1\",\n \"isExternal\": true,\n \"isInternal\": true,\n \"hasCustomPriceValue\": true,\n \"monthPeriod\": 1,\n \"customMinPrice\": 5000,\n \"isArchived\": false,\n \"hasSubscription\": true,\n \"hasOneTimePayment\": true,\n \"goalValue\": 42,\n \"cycleDay\": 15,\n \"cycleMonth\": 1,\n \"cycleHasProratio\": true,\n \"maxDate\": \"2026-01-15T10:30:00+00:00\",\n \"proratioMinMonthsEnabler\": 1,\n \"description\": \"Quarterly chapter meeting open to all members.\",\n \"descriptionEn\": \"Quarterly chapter meeting open to all members.\",\n \"logo\": \"https://cdn.orgo.space/tenants/acme/logo.png\",\n \"settings\": [\n \"string\"\n ],\n \"descriptionInternal\": \"Quarterly chapter meeting open to all members.\",\n \"cycleRecurrences\": 42,\n \"hasConfidentialityEnabled\": true,\n \"customMaxPrice\": 5000,\n \"event\": \"/api/v1/events/1\",\n \"startingDate\": \"2026-01-15T10:30:00+00:00\",\n \"type\": \"MEMBER\",\n \"goalValueSubscription\": 42,\n \"hasLocalCenterOption\": true,\n \"abTestingEnabled\": true,\n \"slug\": \"annual-general-meeting-2026\",\n \"displayOnProfile\": true,\n \"productPriceVariations\": [\n \"/api/v1/product_price_variations/1\"\n ],\n \"metaGraphImage\": \"https://cdn.orgo.space/events/12/cover.jpg\",\n \"heroVideoUrl\": \"https://civic-collective.example.com\",\n \"thankYouMessage\": \"Looking forward to seeing you at the meeting.\",\n \"descriptionDe\": \"Quarterly chapter meeting open to all members.\"\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/products/{uuid}")
.header("Api-Token", "<api-key>")
.header("Content-Type", "application/merge-patch+json")
.body("{\n \"name\": \"Boston Chapter\",\n \"nameEn\": \"Boston Chapter\",\n \"localCenter\": \"/api/v1/local_centers/1\",\n \"organisation\": \"/api/v1/tenants/1\",\n \"isExternal\": true,\n \"isInternal\": true,\n \"hasCustomPriceValue\": true,\n \"monthPeriod\": 1,\n \"customMinPrice\": 5000,\n \"isArchived\": false,\n \"hasSubscription\": true,\n \"hasOneTimePayment\": true,\n \"goalValue\": 42,\n \"cycleDay\": 15,\n \"cycleMonth\": 1,\n \"cycleHasProratio\": true,\n \"maxDate\": \"2026-01-15T10:30:00+00:00\",\n \"proratioMinMonthsEnabler\": 1,\n \"description\": \"Quarterly chapter meeting open to all members.\",\n \"descriptionEn\": \"Quarterly chapter meeting open to all members.\",\n \"logo\": \"https://cdn.orgo.space/tenants/acme/logo.png\",\n \"settings\": [\n \"string\"\n ],\n \"descriptionInternal\": \"Quarterly chapter meeting open to all members.\",\n \"cycleRecurrences\": 42,\n \"hasConfidentialityEnabled\": true,\n \"customMaxPrice\": 5000,\n \"event\": \"/api/v1/events/1\",\n \"startingDate\": \"2026-01-15T10:30:00+00:00\",\n \"type\": \"MEMBER\",\n \"goalValueSubscription\": 42,\n \"hasLocalCenterOption\": true,\n \"abTestingEnabled\": true,\n \"slug\": \"annual-general-meeting-2026\",\n \"displayOnProfile\": true,\n \"productPriceVariations\": [\n \"/api/v1/product_price_variations/1\"\n ],\n \"metaGraphImage\": \"https://cdn.orgo.space/events/12/cover.jpg\",\n \"heroVideoUrl\": \"https://civic-collective.example.com\",\n \"thankYouMessage\": \"Looking forward to seeing you at the meeting.\",\n \"descriptionDe\": \"Quarterly chapter meeting open to all members.\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.orgo.space/api/v1/products/{uuid}")
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 \"name\": \"Boston Chapter\",\n \"nameEn\": \"Boston Chapter\",\n \"localCenter\": \"/api/v1/local_centers/1\",\n \"organisation\": \"/api/v1/tenants/1\",\n \"isExternal\": true,\n \"isInternal\": true,\n \"hasCustomPriceValue\": true,\n \"monthPeriod\": 1,\n \"customMinPrice\": 5000,\n \"isArchived\": false,\n \"hasSubscription\": true,\n \"hasOneTimePayment\": true,\n \"goalValue\": 42,\n \"cycleDay\": 15,\n \"cycleMonth\": 1,\n \"cycleHasProratio\": true,\n \"maxDate\": \"2026-01-15T10:30:00+00:00\",\n \"proratioMinMonthsEnabler\": 1,\n \"description\": \"Quarterly chapter meeting open to all members.\",\n \"descriptionEn\": \"Quarterly chapter meeting open to all members.\",\n \"logo\": \"https://cdn.orgo.space/tenants/acme/logo.png\",\n \"settings\": [\n \"string\"\n ],\n \"descriptionInternal\": \"Quarterly chapter meeting open to all members.\",\n \"cycleRecurrences\": 42,\n \"hasConfidentialityEnabled\": true,\n \"customMaxPrice\": 5000,\n \"event\": \"/api/v1/events/1\",\n \"startingDate\": \"2026-01-15T10:30:00+00:00\",\n \"type\": \"MEMBER\",\n \"goalValueSubscription\": 42,\n \"hasLocalCenterOption\": true,\n \"abTestingEnabled\": true,\n \"slug\": \"annual-general-meeting-2026\",\n \"displayOnProfile\": true,\n \"productPriceVariations\": [\n \"/api/v1/product_price_variations/1\"\n ],\n \"metaGraphImage\": \"https://cdn.orgo.space/events/12/cover.jpg\",\n \"heroVideoUrl\": \"https://civic-collective.example.com\",\n \"thankYouMessage\": \"Looking forward to seeing you at the meeting.\",\n \"descriptionDe\": \"Quarterly chapter meeting open to all members.\"\n}"
response = http.request(request)
puts response.read_body{
"uuid": "01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12",
"id": 42,
"name": "Boston Chapter",
"nameEn": "Boston Chapter",
"productStripeId": "string",
"localCenter": {
"stripeAccount": "acct_1MhsK3LZvKYlo2C0",
"localCenterStripeAccount": "acct_1MhsK3LZvKYlo2C0",
"currency": "USD",
"alias": "string",
"isParent": true,
"localCenterCurrency": "USD",
"id": 42,
"name": "Boston Chapter",
"parent": "/api/v1/units/1"
},
"tenant": {
"stripeAccount": "acct_1MhsK3LZvKYlo2C0"
},
"organisation": {
"stripeAccount": "acct_1MhsK3LZvKYlo2C0"
},
"isExternal": true,
"isInternal": true,
"productPrices": [
{
"id": 42,
"priceStripeId": "string",
"currency": "USD",
"price": 50,
"name": "Boston Chapter",
"isArchived": false,
"isSubscription": true,
"isRestricted": "string",
"allowedFeeProductPrices": [
"/api/v1/product_prices/1"
],
"isDefault": true,
"fullDescription": "Quarterly chapter meeting open to all members.",
"displayNameOnPaymentPage": true,
"overwriteMonthPeriod": 1,
"isLifetime": true,
"isHidden": true,
"productPriceVariationValues": [
"/api/v1/product_price_variation_values/1"
],
"isBundle": true,
"isBundleMember": true,
"validFrom": "2026-01-15T10:30:00+00:00",
"validTo": "2026-01-15T10:30:00+00:00",
"ageUnder": 34,
"ageOver": 34,
"previousVersion": "/api/v1/product_prices/1",
"companySlots": 42,
"isCompanyPrice": true,
"maxSeats": 42,
"soldCount": 12,
"sortOrder": 42,
"groupName": "Boston Chapter",
"addons": [
"/api/v1/product_price_addons/1"
],
"monthPeriod": 1,
"availableSeats": 42,
"activeAddons": {}
}
],
"hasCustomPriceValue": true,
"monthPeriod": 1,
"customMinPrice": 5000,
"isArchived": false,
"hasSubscription": true,
"hasOneTimePayment": true,
"goalValue": 42,
"cycleDay": 15,
"cycleMonth": 1,
"cycleHasProratio": true,
"maxDate": "2026-01-15T10:30:00+00:00",
"createdAt": "2026-01-15T10:30:00+00:00",
"proratioMinMonthsEnabler": 1,
"description": "Quarterly chapter meeting open to all members.",
"descriptionEn": "Quarterly chapter meeting open to all members.",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"isFee": true,
"isDonation": true,
"settings": [
"string"
],
"descriptionInternal": "Quarterly chapter meeting open to all members.",
"cycleRecurrences": 42,
"hasConfidentialityEnabled": true,
"customMaxPrice": 5000,
"event": {
"id": 42,
"uuid": "01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12",
"name": "Boston Chapter",
"location": "Boston Common, Boston, MA",
"description": "Quarterly chapter meeting open to all members.",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"meetExists": true,
"type": "/api/v1/event_types/1",
"dateCreated": "2026-01-15T10:30:00+00:00",
"eventMedia": [
{
"id": 42,
"media": "/api/v1/media/1"
}
],
"logoFromAlbum": "https://cdn.orgo.space/tenants/acme/logo.png",
"dateTimeBegin": "2026-01-15T10:30:00+00:00",
"dateTimeEnd": "2026-01-15T10:30:00+00:00",
"meet": "https://meet.google.com/abc-defg-hij",
"settings": [
"string"
],
"sdg": [
"string"
],
"isPublic": true,
"hasEventTicketing": true,
"isPast": true
},
"startingDate": "2026-01-15T10:30:00+00:00",
"productOptions": [
{
"id": 42,
"name": "Boston Chapter",
"isArchived": false,
"position": 42
}
],
"type": "MEMBER",
"goalValueSubscription": 42,
"hasLocalCenterOption": true,
"abTestingEnabled": true,
"slug": "annual-general-meeting-2026",
"slugGo": "agm26",
"slugEnGo": "string",
"displayOnProfile": true,
"productPriceVariations": [
{
"id": 42,
"enabled": true,
"defaultPrice": 5000,
"currency": "USD"
}
],
"metaGraphImage": "https://cdn.orgo.space/events/12/cover.jpg",
"heroVideoUrl": "https://civic-collective.example.com",
"thankYouMessage": "Looking forward to seeing you at the meeting.",
"descriptionDe": "Quarterly chapter meeting open to all members."
}Update a product
Updates product fields and syncs changes to Stripe. If the Stripe product ID is stale, clears it and re-creates the Stripe product. Republishes the Go landing page if a slugGo exists. Non-HR users are automatically scoped to their local center. Requires FINANCIAL_TENANT or FINANCIAL_LOCAL permission.
curl --request PATCH \
--url https://app.orgo.space/api/v1/products/{uuid} \
--header 'Api-Token: <api-key>' \
--header 'Content-Type: application/merge-patch+json' \
--data '
{
"name": "Boston Chapter",
"nameEn": "Boston Chapter",
"localCenter": "/api/v1/local_centers/1",
"organisation": "/api/v1/tenants/1",
"isExternal": true,
"isInternal": true,
"hasCustomPriceValue": true,
"monthPeriod": 1,
"customMinPrice": 5000,
"isArchived": false,
"hasSubscription": true,
"hasOneTimePayment": true,
"goalValue": 42,
"cycleDay": 15,
"cycleMonth": 1,
"cycleHasProratio": true,
"maxDate": "2026-01-15T10:30:00+00:00",
"proratioMinMonthsEnabler": 1,
"description": "Quarterly chapter meeting open to all members.",
"descriptionEn": "Quarterly chapter meeting open to all members.",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"settings": [
"string"
],
"descriptionInternal": "Quarterly chapter meeting open to all members.",
"cycleRecurrences": 42,
"hasConfidentialityEnabled": true,
"customMaxPrice": 5000,
"event": "/api/v1/events/1",
"startingDate": "2026-01-15T10:30:00+00:00",
"type": "MEMBER",
"goalValueSubscription": 42,
"hasLocalCenterOption": true,
"abTestingEnabled": true,
"slug": "annual-general-meeting-2026",
"displayOnProfile": true,
"productPriceVariations": [
"/api/v1/product_price_variations/1"
],
"metaGraphImage": "https://cdn.orgo.space/events/12/cover.jpg",
"heroVideoUrl": "https://civic-collective.example.com",
"thankYouMessage": "Looking forward to seeing you at the meeting.",
"descriptionDe": "Quarterly chapter meeting open to all members."
}
'import requests
url = "https://app.orgo.space/api/v1/products/{uuid}"
payload = {
"name": "Boston Chapter",
"nameEn": "Boston Chapter",
"localCenter": "/api/v1/local_centers/1",
"organisation": "/api/v1/tenants/1",
"isExternal": True,
"isInternal": True,
"hasCustomPriceValue": True,
"monthPeriod": 1,
"customMinPrice": 5000,
"isArchived": False,
"hasSubscription": True,
"hasOneTimePayment": True,
"goalValue": 42,
"cycleDay": 15,
"cycleMonth": 1,
"cycleHasProratio": True,
"maxDate": "2026-01-15T10:30:00+00:00",
"proratioMinMonthsEnabler": 1,
"description": "Quarterly chapter meeting open to all members.",
"descriptionEn": "Quarterly chapter meeting open to all members.",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"settings": ["string"],
"descriptionInternal": "Quarterly chapter meeting open to all members.",
"cycleRecurrences": 42,
"hasConfidentialityEnabled": True,
"customMaxPrice": 5000,
"event": "/api/v1/events/1",
"startingDate": "2026-01-15T10:30:00+00:00",
"type": "MEMBER",
"goalValueSubscription": 42,
"hasLocalCenterOption": True,
"abTestingEnabled": True,
"slug": "annual-general-meeting-2026",
"displayOnProfile": True,
"productPriceVariations": ["/api/v1/product_price_variations/1"],
"metaGraphImage": "https://cdn.orgo.space/events/12/cover.jpg",
"heroVideoUrl": "https://civic-collective.example.com",
"thankYouMessage": "Looking forward to seeing you at the meeting.",
"descriptionDe": "Quarterly chapter meeting open to all members."
}
headers = {
"Api-Token": "<api-key>",
"Content-Type": "application/merge-patch+json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'Api-Token': '<api-key>', 'Content-Type': 'application/merge-patch+json'},
body: JSON.stringify({
name: 'Boston Chapter',
nameEn: 'Boston Chapter',
localCenter: '/api/v1/local_centers/1',
organisation: '/api/v1/tenants/1',
isExternal: true,
isInternal: true,
hasCustomPriceValue: true,
monthPeriod: 1,
customMinPrice: 5000,
isArchived: false,
hasSubscription: true,
hasOneTimePayment: true,
goalValue: 42,
cycleDay: 15,
cycleMonth: 1,
cycleHasProratio: true,
maxDate: '2026-01-15T10:30:00+00:00',
proratioMinMonthsEnabler: 1,
description: 'Quarterly chapter meeting open to all members.',
descriptionEn: 'Quarterly chapter meeting open to all members.',
logo: 'https://cdn.orgo.space/tenants/acme/logo.png',
settings: ['string'],
descriptionInternal: 'Quarterly chapter meeting open to all members.',
cycleRecurrences: 42,
hasConfidentialityEnabled: true,
customMaxPrice: 5000,
event: '/api/v1/events/1',
startingDate: '2026-01-15T10:30:00+00:00',
type: 'MEMBER',
goalValueSubscription: 42,
hasLocalCenterOption: true,
abTestingEnabled: true,
slug: 'annual-general-meeting-2026',
displayOnProfile: true,
productPriceVariations: ['/api/v1/product_price_variations/1'],
metaGraphImage: 'https://cdn.orgo.space/events/12/cover.jpg',
heroVideoUrl: 'https://civic-collective.example.com',
thankYouMessage: 'Looking forward to seeing you at the meeting.',
descriptionDe: 'Quarterly chapter meeting open to all members.'
})
};
fetch('https://app.orgo.space/api/v1/products/{uuid}', 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://app.orgo.space/api/v1/products/{uuid}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Boston Chapter',
'nameEn' => 'Boston Chapter',
'localCenter' => '/api/v1/local_centers/1',
'organisation' => '/api/v1/tenants/1',
'isExternal' => true,
'isInternal' => true,
'hasCustomPriceValue' => true,
'monthPeriod' => 1,
'customMinPrice' => 5000,
'isArchived' => false,
'hasSubscription' => true,
'hasOneTimePayment' => true,
'goalValue' => 42,
'cycleDay' => 15,
'cycleMonth' => 1,
'cycleHasProratio' => true,
'maxDate' => '2026-01-15T10:30:00+00:00',
'proratioMinMonthsEnabler' => 1,
'description' => 'Quarterly chapter meeting open to all members.',
'descriptionEn' => 'Quarterly chapter meeting open to all members.',
'logo' => 'https://cdn.orgo.space/tenants/acme/logo.png',
'settings' => [
'string'
],
'descriptionInternal' => 'Quarterly chapter meeting open to all members.',
'cycleRecurrences' => 42,
'hasConfidentialityEnabled' => true,
'customMaxPrice' => 5000,
'event' => '/api/v1/events/1',
'startingDate' => '2026-01-15T10:30:00+00:00',
'type' => 'MEMBER',
'goalValueSubscription' => 42,
'hasLocalCenterOption' => true,
'abTestingEnabled' => true,
'slug' => 'annual-general-meeting-2026',
'displayOnProfile' => true,
'productPriceVariations' => [
'/api/v1/product_price_variations/1'
],
'metaGraphImage' => 'https://cdn.orgo.space/events/12/cover.jpg',
'heroVideoUrl' => 'https://civic-collective.example.com',
'thankYouMessage' => 'Looking forward to seeing you at the meeting.',
'descriptionDe' => 'Quarterly chapter meeting open to all members.'
]),
CURLOPT_HTTPHEADER => [
"Api-Token: <api-key>",
"Content-Type: application/merge-patch+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://app.orgo.space/api/v1/products/{uuid}"
payload := strings.NewReader("{\n \"name\": \"Boston Chapter\",\n \"nameEn\": \"Boston Chapter\",\n \"localCenter\": \"/api/v1/local_centers/1\",\n \"organisation\": \"/api/v1/tenants/1\",\n \"isExternal\": true,\n \"isInternal\": true,\n \"hasCustomPriceValue\": true,\n \"monthPeriod\": 1,\n \"customMinPrice\": 5000,\n \"isArchived\": false,\n \"hasSubscription\": true,\n \"hasOneTimePayment\": true,\n \"goalValue\": 42,\n \"cycleDay\": 15,\n \"cycleMonth\": 1,\n \"cycleHasProratio\": true,\n \"maxDate\": \"2026-01-15T10:30:00+00:00\",\n \"proratioMinMonthsEnabler\": 1,\n \"description\": \"Quarterly chapter meeting open to all members.\",\n \"descriptionEn\": \"Quarterly chapter meeting open to all members.\",\n \"logo\": \"https://cdn.orgo.space/tenants/acme/logo.png\",\n \"settings\": [\n \"string\"\n ],\n \"descriptionInternal\": \"Quarterly chapter meeting open to all members.\",\n \"cycleRecurrences\": 42,\n \"hasConfidentialityEnabled\": true,\n \"customMaxPrice\": 5000,\n \"event\": \"/api/v1/events/1\",\n \"startingDate\": \"2026-01-15T10:30:00+00:00\",\n \"type\": \"MEMBER\",\n \"goalValueSubscription\": 42,\n \"hasLocalCenterOption\": true,\n \"abTestingEnabled\": true,\n \"slug\": \"annual-general-meeting-2026\",\n \"displayOnProfile\": true,\n \"productPriceVariations\": [\n \"/api/v1/product_price_variations/1\"\n ],\n \"metaGraphImage\": \"https://cdn.orgo.space/events/12/cover.jpg\",\n \"heroVideoUrl\": \"https://civic-collective.example.com\",\n \"thankYouMessage\": \"Looking forward to seeing you at the meeting.\",\n \"descriptionDe\": \"Quarterly chapter meeting open to all members.\"\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/products/{uuid}")
.header("Api-Token", "<api-key>")
.header("Content-Type", "application/merge-patch+json")
.body("{\n \"name\": \"Boston Chapter\",\n \"nameEn\": \"Boston Chapter\",\n \"localCenter\": \"/api/v1/local_centers/1\",\n \"organisation\": \"/api/v1/tenants/1\",\n \"isExternal\": true,\n \"isInternal\": true,\n \"hasCustomPriceValue\": true,\n \"monthPeriod\": 1,\n \"customMinPrice\": 5000,\n \"isArchived\": false,\n \"hasSubscription\": true,\n \"hasOneTimePayment\": true,\n \"goalValue\": 42,\n \"cycleDay\": 15,\n \"cycleMonth\": 1,\n \"cycleHasProratio\": true,\n \"maxDate\": \"2026-01-15T10:30:00+00:00\",\n \"proratioMinMonthsEnabler\": 1,\n \"description\": \"Quarterly chapter meeting open to all members.\",\n \"descriptionEn\": \"Quarterly chapter meeting open to all members.\",\n \"logo\": \"https://cdn.orgo.space/tenants/acme/logo.png\",\n \"settings\": [\n \"string\"\n ],\n \"descriptionInternal\": \"Quarterly chapter meeting open to all members.\",\n \"cycleRecurrences\": 42,\n \"hasConfidentialityEnabled\": true,\n \"customMaxPrice\": 5000,\n \"event\": \"/api/v1/events/1\",\n \"startingDate\": \"2026-01-15T10:30:00+00:00\",\n \"type\": \"MEMBER\",\n \"goalValueSubscription\": 42,\n \"hasLocalCenterOption\": true,\n \"abTestingEnabled\": true,\n \"slug\": \"annual-general-meeting-2026\",\n \"displayOnProfile\": true,\n \"productPriceVariations\": [\n \"/api/v1/product_price_variations/1\"\n ],\n \"metaGraphImage\": \"https://cdn.orgo.space/events/12/cover.jpg\",\n \"heroVideoUrl\": \"https://civic-collective.example.com\",\n \"thankYouMessage\": \"Looking forward to seeing you at the meeting.\",\n \"descriptionDe\": \"Quarterly chapter meeting open to all members.\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.orgo.space/api/v1/products/{uuid}")
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 \"name\": \"Boston Chapter\",\n \"nameEn\": \"Boston Chapter\",\n \"localCenter\": \"/api/v1/local_centers/1\",\n \"organisation\": \"/api/v1/tenants/1\",\n \"isExternal\": true,\n \"isInternal\": true,\n \"hasCustomPriceValue\": true,\n \"monthPeriod\": 1,\n \"customMinPrice\": 5000,\n \"isArchived\": false,\n \"hasSubscription\": true,\n \"hasOneTimePayment\": true,\n \"goalValue\": 42,\n \"cycleDay\": 15,\n \"cycleMonth\": 1,\n \"cycleHasProratio\": true,\n \"maxDate\": \"2026-01-15T10:30:00+00:00\",\n \"proratioMinMonthsEnabler\": 1,\n \"description\": \"Quarterly chapter meeting open to all members.\",\n \"descriptionEn\": \"Quarterly chapter meeting open to all members.\",\n \"logo\": \"https://cdn.orgo.space/tenants/acme/logo.png\",\n \"settings\": [\n \"string\"\n ],\n \"descriptionInternal\": \"Quarterly chapter meeting open to all members.\",\n \"cycleRecurrences\": 42,\n \"hasConfidentialityEnabled\": true,\n \"customMaxPrice\": 5000,\n \"event\": \"/api/v1/events/1\",\n \"startingDate\": \"2026-01-15T10:30:00+00:00\",\n \"type\": \"MEMBER\",\n \"goalValueSubscription\": 42,\n \"hasLocalCenterOption\": true,\n \"abTestingEnabled\": true,\n \"slug\": \"annual-general-meeting-2026\",\n \"displayOnProfile\": true,\n \"productPriceVariations\": [\n \"/api/v1/product_price_variations/1\"\n ],\n \"metaGraphImage\": \"https://cdn.orgo.space/events/12/cover.jpg\",\n \"heroVideoUrl\": \"https://civic-collective.example.com\",\n \"thankYouMessage\": \"Looking forward to seeing you at the meeting.\",\n \"descriptionDe\": \"Quarterly chapter meeting open to all members.\"\n}"
response = http.request(request)
puts response.read_body{
"uuid": "01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12",
"id": 42,
"name": "Boston Chapter",
"nameEn": "Boston Chapter",
"productStripeId": "string",
"localCenter": {
"stripeAccount": "acct_1MhsK3LZvKYlo2C0",
"localCenterStripeAccount": "acct_1MhsK3LZvKYlo2C0",
"currency": "USD",
"alias": "string",
"isParent": true,
"localCenterCurrency": "USD",
"id": 42,
"name": "Boston Chapter",
"parent": "/api/v1/units/1"
},
"tenant": {
"stripeAccount": "acct_1MhsK3LZvKYlo2C0"
},
"organisation": {
"stripeAccount": "acct_1MhsK3LZvKYlo2C0"
},
"isExternal": true,
"isInternal": true,
"productPrices": [
{
"id": 42,
"priceStripeId": "string",
"currency": "USD",
"price": 50,
"name": "Boston Chapter",
"isArchived": false,
"isSubscription": true,
"isRestricted": "string",
"allowedFeeProductPrices": [
"/api/v1/product_prices/1"
],
"isDefault": true,
"fullDescription": "Quarterly chapter meeting open to all members.",
"displayNameOnPaymentPage": true,
"overwriteMonthPeriod": 1,
"isLifetime": true,
"isHidden": true,
"productPriceVariationValues": [
"/api/v1/product_price_variation_values/1"
],
"isBundle": true,
"isBundleMember": true,
"validFrom": "2026-01-15T10:30:00+00:00",
"validTo": "2026-01-15T10:30:00+00:00",
"ageUnder": 34,
"ageOver": 34,
"previousVersion": "/api/v1/product_prices/1",
"companySlots": 42,
"isCompanyPrice": true,
"maxSeats": 42,
"soldCount": 12,
"sortOrder": 42,
"groupName": "Boston Chapter",
"addons": [
"/api/v1/product_price_addons/1"
],
"monthPeriod": 1,
"availableSeats": 42,
"activeAddons": {}
}
],
"hasCustomPriceValue": true,
"monthPeriod": 1,
"customMinPrice": 5000,
"isArchived": false,
"hasSubscription": true,
"hasOneTimePayment": true,
"goalValue": 42,
"cycleDay": 15,
"cycleMonth": 1,
"cycleHasProratio": true,
"maxDate": "2026-01-15T10:30:00+00:00",
"createdAt": "2026-01-15T10:30:00+00:00",
"proratioMinMonthsEnabler": 1,
"description": "Quarterly chapter meeting open to all members.",
"descriptionEn": "Quarterly chapter meeting open to all members.",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"isFee": true,
"isDonation": true,
"settings": [
"string"
],
"descriptionInternal": "Quarterly chapter meeting open to all members.",
"cycleRecurrences": 42,
"hasConfidentialityEnabled": true,
"customMaxPrice": 5000,
"event": {
"id": 42,
"uuid": "01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12",
"name": "Boston Chapter",
"location": "Boston Common, Boston, MA",
"description": "Quarterly chapter meeting open to all members.",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"meetExists": true,
"type": "/api/v1/event_types/1",
"dateCreated": "2026-01-15T10:30:00+00:00",
"eventMedia": [
{
"id": 42,
"media": "/api/v1/media/1"
}
],
"logoFromAlbum": "https://cdn.orgo.space/tenants/acme/logo.png",
"dateTimeBegin": "2026-01-15T10:30:00+00:00",
"dateTimeEnd": "2026-01-15T10:30:00+00:00",
"meet": "https://meet.google.com/abc-defg-hij",
"settings": [
"string"
],
"sdg": [
"string"
],
"isPublic": true,
"hasEventTicketing": true,
"isPast": true
},
"startingDate": "2026-01-15T10:30:00+00:00",
"productOptions": [
{
"id": 42,
"name": "Boston Chapter",
"isArchived": false,
"position": 42
}
],
"type": "MEMBER",
"goalValueSubscription": 42,
"hasLocalCenterOption": true,
"abTestingEnabled": true,
"slug": "annual-general-meeting-2026",
"slugGo": "agm26",
"slugEnGo": "string",
"displayOnProfile": true,
"productPriceVariations": [
{
"id": 42,
"enabled": true,
"defaultPrice": 5000,
"currency": "USD"
}
],
"metaGraphImage": "https://cdn.orgo.space/events/12/cover.jpg",
"heroVideoUrl": "https://civic-collective.example.com",
"thankYouMessage": "Looking forward to seeing you at the meeting.",
"descriptionDe": "Quarterly chapter meeting open to all members."
}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
Product identifier
Body
The updated Product resource
"/api/v1/local_centers/1"
"/api/v1/tenants/1"
"/api/v1/events/1"
["/api/v1/product_price_variations/1"]
Response
Product 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
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes

