curl --request POST \
--url https://app.orgo.space/api/v1/events/{uuid}/duplicate \
--header 'Api-Token: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"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",
"type": {
"name": "Boston Chapter",
"color": "#16A34A",
"icon": "calendar"
},
"unit": "/api/v1/units/1",
"tags": "string",
"goal": "Increase active volunteer participation by 20% this quarter.",
"target": "All active members in the Boston local center.",
"activities": "Welcome remarks, working-group breakouts, and a social hour to close.",
"advertising": "Promoted via newsletter, on the homepage, and through partner channels.",
"budget": "Estimated $1,200 for venue and refreshments.",
"partners": "Boston Public Library, City of Boston Civic Engagement Office.",
"numberOfParticipants": 42,
"isGeneralMeeting": true,
"isGeneralMeetingEx": true,
"isGeneralMeetingElection": true,
"isTraining": true,
"parentEvent": "/api/v1/events/1",
"position": 42,
"dateTimeBegin": "2026-01-15T10:30:00+00:00",
"dateTimeEnd": "2026-01-15T10:30:00+00:00",
"isAnnualReport": true,
"product": "/api/v1/products/1",
"meet": "https://meet.google.com/abc-defg-hij",
"settings": [
"string"
],
"hasVoting": true,
"sdg": [
"string"
],
"isPublic": true,
"hasEventTicketing": true,
"timezone": "America/New_York",
"status": "ACTIVE",
"newsletterEnabled": true,
"placesApiId": "ChIJOwg_06VPwokRYv534QaPC8g",
"placeLatitude": 42.3601,
"placeLongitude": -71.0589,
"gamificationPoints": 42,
"badge": {
"name": "Boston Chapter",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png"
},
"customStatus": "/api/v1/event_statuses/1",
"sendAttendanceReminder": true,
"sendOneHourReminder": true,
"requiresRegistrationForm": true,
"maxCapacity": 42,
"registrationManuallyClosed": true,
"registrationFormText": "string",
"allowedUserType": "/api/v1/roles/1"
}
'import requests
url = "https://app.orgo.space/api/v1/events/{uuid}/duplicate"
payload = {
"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",
"type": {
"name": "Boston Chapter",
"color": "#16A34A",
"icon": "calendar"
},
"unit": "/api/v1/units/1",
"tags": "string",
"goal": "Increase active volunteer participation by 20% this quarter.",
"target": "All active members in the Boston local center.",
"activities": "Welcome remarks, working-group breakouts, and a social hour to close.",
"advertising": "Promoted via newsletter, on the homepage, and through partner channels.",
"budget": "Estimated $1,200 for venue and refreshments.",
"partners": "Boston Public Library, City of Boston Civic Engagement Office.",
"numberOfParticipants": 42,
"isGeneralMeeting": True,
"isGeneralMeetingEx": True,
"isGeneralMeetingElection": True,
"isTraining": True,
"parentEvent": "/api/v1/events/1",
"position": 42,
"dateTimeBegin": "2026-01-15T10:30:00+00:00",
"dateTimeEnd": "2026-01-15T10:30:00+00:00",
"isAnnualReport": True,
"product": "/api/v1/products/1",
"meet": "https://meet.google.com/abc-defg-hij",
"settings": ["string"],
"hasVoting": True,
"sdg": ["string"],
"isPublic": True,
"hasEventTicketing": True,
"timezone": "America/New_York",
"status": "ACTIVE",
"newsletterEnabled": True,
"placesApiId": "ChIJOwg_06VPwokRYv534QaPC8g",
"placeLatitude": 42.3601,
"placeLongitude": -71.0589,
"gamificationPoints": 42,
"badge": {
"name": "Boston Chapter",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png"
},
"customStatus": "/api/v1/event_statuses/1",
"sendAttendanceReminder": True,
"sendOneHourReminder": True,
"requiresRegistrationForm": True,
"maxCapacity": 42,
"registrationManuallyClosed": True,
"registrationFormText": "string",
"allowedUserType": "/api/v1/roles/1"
}
headers = {
"Api-Token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Api-Token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
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',
type: {name: 'Boston Chapter', color: '#16A34A', icon: 'calendar'},
unit: '/api/v1/units/1',
tags: 'string',
goal: 'Increase active volunteer participation by 20% this quarter.',
target: 'All active members in the Boston local center.',
activities: 'Welcome remarks, working-group breakouts, and a social hour to close.',
advertising: 'Promoted via newsletter, on the homepage, and through partner channels.',
budget: 'Estimated $1,200 for venue and refreshments.',
partners: 'Boston Public Library, City of Boston Civic Engagement Office.',
numberOfParticipants: 42,
isGeneralMeeting: true,
isGeneralMeetingEx: true,
isGeneralMeetingElection: true,
isTraining: true,
parentEvent: '/api/v1/events/1',
position: 42,
dateTimeBegin: '2026-01-15T10:30:00+00:00',
dateTimeEnd: '2026-01-15T10:30:00+00:00',
isAnnualReport: true,
product: '/api/v1/products/1',
meet: 'https://meet.google.com/abc-defg-hij',
settings: ['string'],
hasVoting: true,
sdg: ['string'],
isPublic: true,
hasEventTicketing: true,
timezone: 'America/New_York',
status: 'ACTIVE',
newsletterEnabled: true,
placesApiId: 'ChIJOwg_06VPwokRYv534QaPC8g',
placeLatitude: 42.3601,
placeLongitude: -71.0589,
gamificationPoints: 42,
badge: {name: 'Boston Chapter', logo: 'https://cdn.orgo.space/tenants/acme/logo.png'},
customStatus: '/api/v1/event_statuses/1',
sendAttendanceReminder: true,
sendOneHourReminder: true,
requiresRegistrationForm: true,
maxCapacity: 42,
registrationManuallyClosed: true,
registrationFormText: 'string',
allowedUserType: '/api/v1/roles/1'
})
};
fetch('https://app.orgo.space/api/v1/events/{uuid}/duplicate', 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/events/{uuid}/duplicate",
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' => 'Boston Chapter',
'location' => 'Boston Common, Boston, MA',
'description' => 'Quarterly chapter meeting open to all members.',
'logo' => 'https://cdn.orgo.space/tenants/acme/logo.png',
'type' => [
'name' => 'Boston Chapter',
'color' => '#16A34A',
'icon' => 'calendar'
],
'unit' => '/api/v1/units/1',
'tags' => 'string',
'goal' => 'Increase active volunteer participation by 20% this quarter.',
'target' => 'All active members in the Boston local center.',
'activities' => 'Welcome remarks, working-group breakouts, and a social hour to close.',
'advertising' => 'Promoted via newsletter, on the homepage, and through partner channels.',
'budget' => 'Estimated $1,200 for venue and refreshments.',
'partners' => 'Boston Public Library, City of Boston Civic Engagement Office.',
'numberOfParticipants' => 42,
'isGeneralMeeting' => true,
'isGeneralMeetingEx' => true,
'isGeneralMeetingElection' => true,
'isTraining' => true,
'parentEvent' => '/api/v1/events/1',
'position' => 42,
'dateTimeBegin' => '2026-01-15T10:30:00+00:00',
'dateTimeEnd' => '2026-01-15T10:30:00+00:00',
'isAnnualReport' => true,
'product' => '/api/v1/products/1',
'meet' => 'https://meet.google.com/abc-defg-hij',
'settings' => [
'string'
],
'hasVoting' => true,
'sdg' => [
'string'
],
'isPublic' => true,
'hasEventTicketing' => true,
'timezone' => 'America/New_York',
'status' => 'ACTIVE',
'newsletterEnabled' => true,
'placesApiId' => 'ChIJOwg_06VPwokRYv534QaPC8g',
'placeLatitude' => 42.3601,
'placeLongitude' => -71.0589,
'gamificationPoints' => 42,
'badge' => [
'name' => 'Boston Chapter',
'logo' => 'https://cdn.orgo.space/tenants/acme/logo.png'
],
'customStatus' => '/api/v1/event_statuses/1',
'sendAttendanceReminder' => true,
'sendOneHourReminder' => true,
'requiresRegistrationForm' => true,
'maxCapacity' => 42,
'registrationManuallyClosed' => true,
'registrationFormText' => 'string',
'allowedUserType' => '/api/v1/roles/1'
]),
CURLOPT_HTTPHEADER => [
"Api-Token: <api-key>",
"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://app.orgo.space/api/v1/events/{uuid}/duplicate"
payload := strings.NewReader("{\n \"name\": \"Boston Chapter\",\n \"location\": \"Boston Common, Boston, MA\",\n \"description\": \"Quarterly chapter meeting open to all members.\",\n \"logo\": \"https://cdn.orgo.space/tenants/acme/logo.png\",\n \"type\": {\n \"name\": \"Boston Chapter\",\n \"color\": \"#16A34A\",\n \"icon\": \"calendar\"\n },\n \"unit\": \"/api/v1/units/1\",\n \"tags\": \"string\",\n \"goal\": \"Increase active volunteer participation by 20% this quarter.\",\n \"target\": \"All active members in the Boston local center.\",\n \"activities\": \"Welcome remarks, working-group breakouts, and a social hour to close.\",\n \"advertising\": \"Promoted via newsletter, on the homepage, and through partner channels.\",\n \"budget\": \"Estimated $1,200 for venue and refreshments.\",\n \"partners\": \"Boston Public Library, City of Boston Civic Engagement Office.\",\n \"numberOfParticipants\": 42,\n \"isGeneralMeeting\": true,\n \"isGeneralMeetingEx\": true,\n \"isGeneralMeetingElection\": true,\n \"isTraining\": true,\n \"parentEvent\": \"/api/v1/events/1\",\n \"position\": 42,\n \"dateTimeBegin\": \"2026-01-15T10:30:00+00:00\",\n \"dateTimeEnd\": \"2026-01-15T10:30:00+00:00\",\n \"isAnnualReport\": true,\n \"product\": \"/api/v1/products/1\",\n \"meet\": \"https://meet.google.com/abc-defg-hij\",\n \"settings\": [\n \"string\"\n ],\n \"hasVoting\": true,\n \"sdg\": [\n \"string\"\n ],\n \"isPublic\": true,\n \"hasEventTicketing\": true,\n \"timezone\": \"America/New_York\",\n \"status\": \"ACTIVE\",\n \"newsletterEnabled\": true,\n \"placesApiId\": \"ChIJOwg_06VPwokRYv534QaPC8g\",\n \"placeLatitude\": 42.3601,\n \"placeLongitude\": -71.0589,\n \"gamificationPoints\": 42,\n \"badge\": {\n \"name\": \"Boston Chapter\",\n \"logo\": \"https://cdn.orgo.space/tenants/acme/logo.png\"\n },\n \"customStatus\": \"/api/v1/event_statuses/1\",\n \"sendAttendanceReminder\": true,\n \"sendOneHourReminder\": true,\n \"requiresRegistrationForm\": true,\n \"maxCapacity\": 42,\n \"registrationManuallyClosed\": true,\n \"registrationFormText\": \"string\",\n \"allowedUserType\": \"/api/v1/roles/1\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Api-Token", "<api-key>")
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://app.orgo.space/api/v1/events/{uuid}/duplicate")
.header("Api-Token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Boston Chapter\",\n \"location\": \"Boston Common, Boston, MA\",\n \"description\": \"Quarterly chapter meeting open to all members.\",\n \"logo\": \"https://cdn.orgo.space/tenants/acme/logo.png\",\n \"type\": {\n \"name\": \"Boston Chapter\",\n \"color\": \"#16A34A\",\n \"icon\": \"calendar\"\n },\n \"unit\": \"/api/v1/units/1\",\n \"tags\": \"string\",\n \"goal\": \"Increase active volunteer participation by 20% this quarter.\",\n \"target\": \"All active members in the Boston local center.\",\n \"activities\": \"Welcome remarks, working-group breakouts, and a social hour to close.\",\n \"advertising\": \"Promoted via newsletter, on the homepage, and through partner channels.\",\n \"budget\": \"Estimated $1,200 for venue and refreshments.\",\n \"partners\": \"Boston Public Library, City of Boston Civic Engagement Office.\",\n \"numberOfParticipants\": 42,\n \"isGeneralMeeting\": true,\n \"isGeneralMeetingEx\": true,\n \"isGeneralMeetingElection\": true,\n \"isTraining\": true,\n \"parentEvent\": \"/api/v1/events/1\",\n \"position\": 42,\n \"dateTimeBegin\": \"2026-01-15T10:30:00+00:00\",\n \"dateTimeEnd\": \"2026-01-15T10:30:00+00:00\",\n \"isAnnualReport\": true,\n \"product\": \"/api/v1/products/1\",\n \"meet\": \"https://meet.google.com/abc-defg-hij\",\n \"settings\": [\n \"string\"\n ],\n \"hasVoting\": true,\n \"sdg\": [\n \"string\"\n ],\n \"isPublic\": true,\n \"hasEventTicketing\": true,\n \"timezone\": \"America/New_York\",\n \"status\": \"ACTIVE\",\n \"newsletterEnabled\": true,\n \"placesApiId\": \"ChIJOwg_06VPwokRYv534QaPC8g\",\n \"placeLatitude\": 42.3601,\n \"placeLongitude\": -71.0589,\n \"gamificationPoints\": 42,\n \"badge\": {\n \"name\": \"Boston Chapter\",\n \"logo\": \"https://cdn.orgo.space/tenants/acme/logo.png\"\n },\n \"customStatus\": \"/api/v1/event_statuses/1\",\n \"sendAttendanceReminder\": true,\n \"sendOneHourReminder\": true,\n \"requiresRegistrationForm\": true,\n \"maxCapacity\": 42,\n \"registrationManuallyClosed\": true,\n \"registrationFormText\": \"string\",\n \"allowedUserType\": \"/api/v1/roles/1\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.orgo.space/api/v1/events/{uuid}/duplicate")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Api-Token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Boston Chapter\",\n \"location\": \"Boston Common, Boston, MA\",\n \"description\": \"Quarterly chapter meeting open to all members.\",\n \"logo\": \"https://cdn.orgo.space/tenants/acme/logo.png\",\n \"type\": {\n \"name\": \"Boston Chapter\",\n \"color\": \"#16A34A\",\n \"icon\": \"calendar\"\n },\n \"unit\": \"/api/v1/units/1\",\n \"tags\": \"string\",\n \"goal\": \"Increase active volunteer participation by 20% this quarter.\",\n \"target\": \"All active members in the Boston local center.\",\n \"activities\": \"Welcome remarks, working-group breakouts, and a social hour to close.\",\n \"advertising\": \"Promoted via newsletter, on the homepage, and through partner channels.\",\n \"budget\": \"Estimated $1,200 for venue and refreshments.\",\n \"partners\": \"Boston Public Library, City of Boston Civic Engagement Office.\",\n \"numberOfParticipants\": 42,\n \"isGeneralMeeting\": true,\n \"isGeneralMeetingEx\": true,\n \"isGeneralMeetingElection\": true,\n \"isTraining\": true,\n \"parentEvent\": \"/api/v1/events/1\",\n \"position\": 42,\n \"dateTimeBegin\": \"2026-01-15T10:30:00+00:00\",\n \"dateTimeEnd\": \"2026-01-15T10:30:00+00:00\",\n \"isAnnualReport\": true,\n \"product\": \"/api/v1/products/1\",\n \"meet\": \"https://meet.google.com/abc-defg-hij\",\n \"settings\": [\n \"string\"\n ],\n \"hasVoting\": true,\n \"sdg\": [\n \"string\"\n ],\n \"isPublic\": true,\n \"hasEventTicketing\": true,\n \"timezone\": \"America/New_York\",\n \"status\": \"ACTIVE\",\n \"newsletterEnabled\": true,\n \"placesApiId\": \"ChIJOwg_06VPwokRYv534QaPC8g\",\n \"placeLatitude\": 42.3601,\n \"placeLongitude\": -71.0589,\n \"gamificationPoints\": 42,\n \"badge\": {\n \"name\": \"Boston Chapter\",\n \"logo\": \"https://cdn.orgo.space/tenants/acme/logo.png\"\n },\n \"customStatus\": \"/api/v1/event_statuses/1\",\n \"sendAttendanceReminder\": true,\n \"sendOneHourReminder\": true,\n \"requiresRegistrationForm\": true,\n \"maxCapacity\": 42,\n \"registrationManuallyClosed\": true,\n \"registrationFormText\": \"string\",\n \"allowedUserType\": \"/api/v1/roles/1\"\n}"
response = http.request(request)
puts response.read_body{
"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,
"owner": {
"id": 42,
"firstName": "James",
"lastName": "Patterson",
"fullName": "James Patterson",
"timezone": "America/New_York",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"professionHeadline": "Lead organizer at Boston Chapter",
"bio": "Volunteer organizer in the Boston chapter since 2022."
},
"type": {
"id": 42,
"name": "Boston Chapter",
"color": "#16A34A",
"icon": "calendar",
"createIsGrantedRole": "ROLE_USER"
},
"unit": {
"id": 42,
"name": "Boston Chapter"
},
"dateCreated": "2026-01-15T10:30:00+00:00",
"tags": "string",
"goal": "Increase active volunteer participation by 20% this quarter.",
"target": "All active members in the Boston local center.",
"activities": "Welcome remarks, working-group breakouts, and a social hour to close.",
"advertising": "Promoted via newsletter, on the homepage, and through partner channels.",
"budget": "Estimated $1,200 for venue and refreshments.",
"partners": "Boston Public Library, City of Boston Civic Engagement Office.",
"numberOfParticipants": 42,
"isGeneralMeeting": true,
"isGeneralMeetingEx": true,
"isGeneralMeetingElection": true,
"isTraining": true,
"eventMedia": [
{
"id": 42,
"media": {
"id": 42,
"size": 42,
"entityId": 42,
"contentUrl": "https://civic-collective.example.com",
"type": "MEMBER",
"originalName": "Boston Chapter"
}
}
],
"parentEvent": "/api/v1/events/1",
"position": 42,
"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",
"isAnnualReport": true,
"product": {
"uuid": "01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12",
"id": 42,
"name": "Boston Chapter",
"nameEn": "Boston Chapter",
"productPrices": [
{
"id": 42,
"currency": "USD",
"price": 50,
"name": "Boston Chapter",
"isSubscription": true,
"isRestricted": "string",
"allowedFeeProductPrices": [
"/api/v1/product_prices/1"
],
"fullDescription": "Quarterly chapter meeting open to all members.",
"displayNameOnPaymentPage": true,
"isLifetime": true,
"validFrom": "2026-01-15T10:30:00+00:00",
"validTo": "2026-01-15T10:30:00+00:00",
"maxSeats": 42,
"soldCount": 12,
"sortOrder": 42,
"groupName": "Boston Chapter",
"addons": [
"/api/v1/product_price_addons/1"
],
"availableSeats": 42,
"activeAddons": "/api/v1/collections/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.",
"event": "/api/v1/events/1",
"productOptions": [
{
"id": 42,
"name": "Boston Chapter",
"isArchived": false,
"position": 42
}
],
"type": "MEMBER",
"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."
},
"meet": "https://meet.google.com/abc-defg-hij",
"settings": [
"string"
],
"hasVoting": true,
"sdg": [
"string"
],
"isPublic": true,
"hasEventTicketing": true,
"timezone": "America/New_York",
"isPast": true,
"status": "ACTIVE",
"newsletterEnabled": true,
"placesApiId": "ChIJOwg_06VPwokRYv534QaPC8g",
"slugGo": "agm26",
"placeLatitude": 42.3601,
"placeLongitude": -71.0589,
"gamificationPoints": 42,
"badge": {
"id": 42,
"name": "Boston Chapter",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png"
},
"customStatus": {
"id": 42,
"name": "Boston Chapter",
"color": "#16A34A",
"isFinal": true
},
"sendAttendanceReminder": true,
"sendOneHourReminder": true,
"invitesSent": true,
"requiresRegistrationForm": true,
"maxCapacity": 42,
"registrationManuallyClosed": true,
"registrationFormText": "string",
"allowedUserType": {
"id": 42,
"name": "Boston Chapter"
}
}Duplicate an event
Creates a copy of the event with all settings, tickets, vouchers, custom fields, speakers, and agenda. Excludes attendees. The duplicated event is created as a draft. Accepts optional unit IRI to place the copy in a different group.
curl --request POST \
--url https://app.orgo.space/api/v1/events/{uuid}/duplicate \
--header 'Api-Token: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"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",
"type": {
"name": "Boston Chapter",
"color": "#16A34A",
"icon": "calendar"
},
"unit": "/api/v1/units/1",
"tags": "string",
"goal": "Increase active volunteer participation by 20% this quarter.",
"target": "All active members in the Boston local center.",
"activities": "Welcome remarks, working-group breakouts, and a social hour to close.",
"advertising": "Promoted via newsletter, on the homepage, and through partner channels.",
"budget": "Estimated $1,200 for venue and refreshments.",
"partners": "Boston Public Library, City of Boston Civic Engagement Office.",
"numberOfParticipants": 42,
"isGeneralMeeting": true,
"isGeneralMeetingEx": true,
"isGeneralMeetingElection": true,
"isTraining": true,
"parentEvent": "/api/v1/events/1",
"position": 42,
"dateTimeBegin": "2026-01-15T10:30:00+00:00",
"dateTimeEnd": "2026-01-15T10:30:00+00:00",
"isAnnualReport": true,
"product": "/api/v1/products/1",
"meet": "https://meet.google.com/abc-defg-hij",
"settings": [
"string"
],
"hasVoting": true,
"sdg": [
"string"
],
"isPublic": true,
"hasEventTicketing": true,
"timezone": "America/New_York",
"status": "ACTIVE",
"newsletterEnabled": true,
"placesApiId": "ChIJOwg_06VPwokRYv534QaPC8g",
"placeLatitude": 42.3601,
"placeLongitude": -71.0589,
"gamificationPoints": 42,
"badge": {
"name": "Boston Chapter",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png"
},
"customStatus": "/api/v1/event_statuses/1",
"sendAttendanceReminder": true,
"sendOneHourReminder": true,
"requiresRegistrationForm": true,
"maxCapacity": 42,
"registrationManuallyClosed": true,
"registrationFormText": "string",
"allowedUserType": "/api/v1/roles/1"
}
'import requests
url = "https://app.orgo.space/api/v1/events/{uuid}/duplicate"
payload = {
"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",
"type": {
"name": "Boston Chapter",
"color": "#16A34A",
"icon": "calendar"
},
"unit": "/api/v1/units/1",
"tags": "string",
"goal": "Increase active volunteer participation by 20% this quarter.",
"target": "All active members in the Boston local center.",
"activities": "Welcome remarks, working-group breakouts, and a social hour to close.",
"advertising": "Promoted via newsletter, on the homepage, and through partner channels.",
"budget": "Estimated $1,200 for venue and refreshments.",
"partners": "Boston Public Library, City of Boston Civic Engagement Office.",
"numberOfParticipants": 42,
"isGeneralMeeting": True,
"isGeneralMeetingEx": True,
"isGeneralMeetingElection": True,
"isTraining": True,
"parentEvent": "/api/v1/events/1",
"position": 42,
"dateTimeBegin": "2026-01-15T10:30:00+00:00",
"dateTimeEnd": "2026-01-15T10:30:00+00:00",
"isAnnualReport": True,
"product": "/api/v1/products/1",
"meet": "https://meet.google.com/abc-defg-hij",
"settings": ["string"],
"hasVoting": True,
"sdg": ["string"],
"isPublic": True,
"hasEventTicketing": True,
"timezone": "America/New_York",
"status": "ACTIVE",
"newsletterEnabled": True,
"placesApiId": "ChIJOwg_06VPwokRYv534QaPC8g",
"placeLatitude": 42.3601,
"placeLongitude": -71.0589,
"gamificationPoints": 42,
"badge": {
"name": "Boston Chapter",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png"
},
"customStatus": "/api/v1/event_statuses/1",
"sendAttendanceReminder": True,
"sendOneHourReminder": True,
"requiresRegistrationForm": True,
"maxCapacity": 42,
"registrationManuallyClosed": True,
"registrationFormText": "string",
"allowedUserType": "/api/v1/roles/1"
}
headers = {
"Api-Token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Api-Token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
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',
type: {name: 'Boston Chapter', color: '#16A34A', icon: 'calendar'},
unit: '/api/v1/units/1',
tags: 'string',
goal: 'Increase active volunteer participation by 20% this quarter.',
target: 'All active members in the Boston local center.',
activities: 'Welcome remarks, working-group breakouts, and a social hour to close.',
advertising: 'Promoted via newsletter, on the homepage, and through partner channels.',
budget: 'Estimated $1,200 for venue and refreshments.',
partners: 'Boston Public Library, City of Boston Civic Engagement Office.',
numberOfParticipants: 42,
isGeneralMeeting: true,
isGeneralMeetingEx: true,
isGeneralMeetingElection: true,
isTraining: true,
parentEvent: '/api/v1/events/1',
position: 42,
dateTimeBegin: '2026-01-15T10:30:00+00:00',
dateTimeEnd: '2026-01-15T10:30:00+00:00',
isAnnualReport: true,
product: '/api/v1/products/1',
meet: 'https://meet.google.com/abc-defg-hij',
settings: ['string'],
hasVoting: true,
sdg: ['string'],
isPublic: true,
hasEventTicketing: true,
timezone: 'America/New_York',
status: 'ACTIVE',
newsletterEnabled: true,
placesApiId: 'ChIJOwg_06VPwokRYv534QaPC8g',
placeLatitude: 42.3601,
placeLongitude: -71.0589,
gamificationPoints: 42,
badge: {name: 'Boston Chapter', logo: 'https://cdn.orgo.space/tenants/acme/logo.png'},
customStatus: '/api/v1/event_statuses/1',
sendAttendanceReminder: true,
sendOneHourReminder: true,
requiresRegistrationForm: true,
maxCapacity: 42,
registrationManuallyClosed: true,
registrationFormText: 'string',
allowedUserType: '/api/v1/roles/1'
})
};
fetch('https://app.orgo.space/api/v1/events/{uuid}/duplicate', 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/events/{uuid}/duplicate",
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' => 'Boston Chapter',
'location' => 'Boston Common, Boston, MA',
'description' => 'Quarterly chapter meeting open to all members.',
'logo' => 'https://cdn.orgo.space/tenants/acme/logo.png',
'type' => [
'name' => 'Boston Chapter',
'color' => '#16A34A',
'icon' => 'calendar'
],
'unit' => '/api/v1/units/1',
'tags' => 'string',
'goal' => 'Increase active volunteer participation by 20% this quarter.',
'target' => 'All active members in the Boston local center.',
'activities' => 'Welcome remarks, working-group breakouts, and a social hour to close.',
'advertising' => 'Promoted via newsletter, on the homepage, and through partner channels.',
'budget' => 'Estimated $1,200 for venue and refreshments.',
'partners' => 'Boston Public Library, City of Boston Civic Engagement Office.',
'numberOfParticipants' => 42,
'isGeneralMeeting' => true,
'isGeneralMeetingEx' => true,
'isGeneralMeetingElection' => true,
'isTraining' => true,
'parentEvent' => '/api/v1/events/1',
'position' => 42,
'dateTimeBegin' => '2026-01-15T10:30:00+00:00',
'dateTimeEnd' => '2026-01-15T10:30:00+00:00',
'isAnnualReport' => true,
'product' => '/api/v1/products/1',
'meet' => 'https://meet.google.com/abc-defg-hij',
'settings' => [
'string'
],
'hasVoting' => true,
'sdg' => [
'string'
],
'isPublic' => true,
'hasEventTicketing' => true,
'timezone' => 'America/New_York',
'status' => 'ACTIVE',
'newsletterEnabled' => true,
'placesApiId' => 'ChIJOwg_06VPwokRYv534QaPC8g',
'placeLatitude' => 42.3601,
'placeLongitude' => -71.0589,
'gamificationPoints' => 42,
'badge' => [
'name' => 'Boston Chapter',
'logo' => 'https://cdn.orgo.space/tenants/acme/logo.png'
],
'customStatus' => '/api/v1/event_statuses/1',
'sendAttendanceReminder' => true,
'sendOneHourReminder' => true,
'requiresRegistrationForm' => true,
'maxCapacity' => 42,
'registrationManuallyClosed' => true,
'registrationFormText' => 'string',
'allowedUserType' => '/api/v1/roles/1'
]),
CURLOPT_HTTPHEADER => [
"Api-Token: <api-key>",
"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://app.orgo.space/api/v1/events/{uuid}/duplicate"
payload := strings.NewReader("{\n \"name\": \"Boston Chapter\",\n \"location\": \"Boston Common, Boston, MA\",\n \"description\": \"Quarterly chapter meeting open to all members.\",\n \"logo\": \"https://cdn.orgo.space/tenants/acme/logo.png\",\n \"type\": {\n \"name\": \"Boston Chapter\",\n \"color\": \"#16A34A\",\n \"icon\": \"calendar\"\n },\n \"unit\": \"/api/v1/units/1\",\n \"tags\": \"string\",\n \"goal\": \"Increase active volunteer participation by 20% this quarter.\",\n \"target\": \"All active members in the Boston local center.\",\n \"activities\": \"Welcome remarks, working-group breakouts, and a social hour to close.\",\n \"advertising\": \"Promoted via newsletter, on the homepage, and through partner channels.\",\n \"budget\": \"Estimated $1,200 for venue and refreshments.\",\n \"partners\": \"Boston Public Library, City of Boston Civic Engagement Office.\",\n \"numberOfParticipants\": 42,\n \"isGeneralMeeting\": true,\n \"isGeneralMeetingEx\": true,\n \"isGeneralMeetingElection\": true,\n \"isTraining\": true,\n \"parentEvent\": \"/api/v1/events/1\",\n \"position\": 42,\n \"dateTimeBegin\": \"2026-01-15T10:30:00+00:00\",\n \"dateTimeEnd\": \"2026-01-15T10:30:00+00:00\",\n \"isAnnualReport\": true,\n \"product\": \"/api/v1/products/1\",\n \"meet\": \"https://meet.google.com/abc-defg-hij\",\n \"settings\": [\n \"string\"\n ],\n \"hasVoting\": true,\n \"sdg\": [\n \"string\"\n ],\n \"isPublic\": true,\n \"hasEventTicketing\": true,\n \"timezone\": \"America/New_York\",\n \"status\": \"ACTIVE\",\n \"newsletterEnabled\": true,\n \"placesApiId\": \"ChIJOwg_06VPwokRYv534QaPC8g\",\n \"placeLatitude\": 42.3601,\n \"placeLongitude\": -71.0589,\n \"gamificationPoints\": 42,\n \"badge\": {\n \"name\": \"Boston Chapter\",\n \"logo\": \"https://cdn.orgo.space/tenants/acme/logo.png\"\n },\n \"customStatus\": \"/api/v1/event_statuses/1\",\n \"sendAttendanceReminder\": true,\n \"sendOneHourReminder\": true,\n \"requiresRegistrationForm\": true,\n \"maxCapacity\": 42,\n \"registrationManuallyClosed\": true,\n \"registrationFormText\": \"string\",\n \"allowedUserType\": \"/api/v1/roles/1\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Api-Token", "<api-key>")
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://app.orgo.space/api/v1/events/{uuid}/duplicate")
.header("Api-Token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Boston Chapter\",\n \"location\": \"Boston Common, Boston, MA\",\n \"description\": \"Quarterly chapter meeting open to all members.\",\n \"logo\": \"https://cdn.orgo.space/tenants/acme/logo.png\",\n \"type\": {\n \"name\": \"Boston Chapter\",\n \"color\": \"#16A34A\",\n \"icon\": \"calendar\"\n },\n \"unit\": \"/api/v1/units/1\",\n \"tags\": \"string\",\n \"goal\": \"Increase active volunteer participation by 20% this quarter.\",\n \"target\": \"All active members in the Boston local center.\",\n \"activities\": \"Welcome remarks, working-group breakouts, and a social hour to close.\",\n \"advertising\": \"Promoted via newsletter, on the homepage, and through partner channels.\",\n \"budget\": \"Estimated $1,200 for venue and refreshments.\",\n \"partners\": \"Boston Public Library, City of Boston Civic Engagement Office.\",\n \"numberOfParticipants\": 42,\n \"isGeneralMeeting\": true,\n \"isGeneralMeetingEx\": true,\n \"isGeneralMeetingElection\": true,\n \"isTraining\": true,\n \"parentEvent\": \"/api/v1/events/1\",\n \"position\": 42,\n \"dateTimeBegin\": \"2026-01-15T10:30:00+00:00\",\n \"dateTimeEnd\": \"2026-01-15T10:30:00+00:00\",\n \"isAnnualReport\": true,\n \"product\": \"/api/v1/products/1\",\n \"meet\": \"https://meet.google.com/abc-defg-hij\",\n \"settings\": [\n \"string\"\n ],\n \"hasVoting\": true,\n \"sdg\": [\n \"string\"\n ],\n \"isPublic\": true,\n \"hasEventTicketing\": true,\n \"timezone\": \"America/New_York\",\n \"status\": \"ACTIVE\",\n \"newsletterEnabled\": true,\n \"placesApiId\": \"ChIJOwg_06VPwokRYv534QaPC8g\",\n \"placeLatitude\": 42.3601,\n \"placeLongitude\": -71.0589,\n \"gamificationPoints\": 42,\n \"badge\": {\n \"name\": \"Boston Chapter\",\n \"logo\": \"https://cdn.orgo.space/tenants/acme/logo.png\"\n },\n \"customStatus\": \"/api/v1/event_statuses/1\",\n \"sendAttendanceReminder\": true,\n \"sendOneHourReminder\": true,\n \"requiresRegistrationForm\": true,\n \"maxCapacity\": 42,\n \"registrationManuallyClosed\": true,\n \"registrationFormText\": \"string\",\n \"allowedUserType\": \"/api/v1/roles/1\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.orgo.space/api/v1/events/{uuid}/duplicate")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Api-Token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Boston Chapter\",\n \"location\": \"Boston Common, Boston, MA\",\n \"description\": \"Quarterly chapter meeting open to all members.\",\n \"logo\": \"https://cdn.orgo.space/tenants/acme/logo.png\",\n \"type\": {\n \"name\": \"Boston Chapter\",\n \"color\": \"#16A34A\",\n \"icon\": \"calendar\"\n },\n \"unit\": \"/api/v1/units/1\",\n \"tags\": \"string\",\n \"goal\": \"Increase active volunteer participation by 20% this quarter.\",\n \"target\": \"All active members in the Boston local center.\",\n \"activities\": \"Welcome remarks, working-group breakouts, and a social hour to close.\",\n \"advertising\": \"Promoted via newsletter, on the homepage, and through partner channels.\",\n \"budget\": \"Estimated $1,200 for venue and refreshments.\",\n \"partners\": \"Boston Public Library, City of Boston Civic Engagement Office.\",\n \"numberOfParticipants\": 42,\n \"isGeneralMeeting\": true,\n \"isGeneralMeetingEx\": true,\n \"isGeneralMeetingElection\": true,\n \"isTraining\": true,\n \"parentEvent\": \"/api/v1/events/1\",\n \"position\": 42,\n \"dateTimeBegin\": \"2026-01-15T10:30:00+00:00\",\n \"dateTimeEnd\": \"2026-01-15T10:30:00+00:00\",\n \"isAnnualReport\": true,\n \"product\": \"/api/v1/products/1\",\n \"meet\": \"https://meet.google.com/abc-defg-hij\",\n \"settings\": [\n \"string\"\n ],\n \"hasVoting\": true,\n \"sdg\": [\n \"string\"\n ],\n \"isPublic\": true,\n \"hasEventTicketing\": true,\n \"timezone\": \"America/New_York\",\n \"status\": \"ACTIVE\",\n \"newsletterEnabled\": true,\n \"placesApiId\": \"ChIJOwg_06VPwokRYv534QaPC8g\",\n \"placeLatitude\": 42.3601,\n \"placeLongitude\": -71.0589,\n \"gamificationPoints\": 42,\n \"badge\": {\n \"name\": \"Boston Chapter\",\n \"logo\": \"https://cdn.orgo.space/tenants/acme/logo.png\"\n },\n \"customStatus\": \"/api/v1/event_statuses/1\",\n \"sendAttendanceReminder\": true,\n \"sendOneHourReminder\": true,\n \"requiresRegistrationForm\": true,\n \"maxCapacity\": 42,\n \"registrationManuallyClosed\": true,\n \"registrationFormText\": \"string\",\n \"allowedUserType\": \"/api/v1/roles/1\"\n}"
response = http.request(request)
puts response.read_body{
"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,
"owner": {
"id": 42,
"firstName": "James",
"lastName": "Patterson",
"fullName": "James Patterson",
"timezone": "America/New_York",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"professionHeadline": "Lead organizer at Boston Chapter",
"bio": "Volunteer organizer in the Boston chapter since 2022."
},
"type": {
"id": 42,
"name": "Boston Chapter",
"color": "#16A34A",
"icon": "calendar",
"createIsGrantedRole": "ROLE_USER"
},
"unit": {
"id": 42,
"name": "Boston Chapter"
},
"dateCreated": "2026-01-15T10:30:00+00:00",
"tags": "string",
"goal": "Increase active volunteer participation by 20% this quarter.",
"target": "All active members in the Boston local center.",
"activities": "Welcome remarks, working-group breakouts, and a social hour to close.",
"advertising": "Promoted via newsletter, on the homepage, and through partner channels.",
"budget": "Estimated $1,200 for venue and refreshments.",
"partners": "Boston Public Library, City of Boston Civic Engagement Office.",
"numberOfParticipants": 42,
"isGeneralMeeting": true,
"isGeneralMeetingEx": true,
"isGeneralMeetingElection": true,
"isTraining": true,
"eventMedia": [
{
"id": 42,
"media": {
"id": 42,
"size": 42,
"entityId": 42,
"contentUrl": "https://civic-collective.example.com",
"type": "MEMBER",
"originalName": "Boston Chapter"
}
}
],
"parentEvent": "/api/v1/events/1",
"position": 42,
"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",
"isAnnualReport": true,
"product": {
"uuid": "01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12",
"id": 42,
"name": "Boston Chapter",
"nameEn": "Boston Chapter",
"productPrices": [
{
"id": 42,
"currency": "USD",
"price": 50,
"name": "Boston Chapter",
"isSubscription": true,
"isRestricted": "string",
"allowedFeeProductPrices": [
"/api/v1/product_prices/1"
],
"fullDescription": "Quarterly chapter meeting open to all members.",
"displayNameOnPaymentPage": true,
"isLifetime": true,
"validFrom": "2026-01-15T10:30:00+00:00",
"validTo": "2026-01-15T10:30:00+00:00",
"maxSeats": 42,
"soldCount": 12,
"sortOrder": 42,
"groupName": "Boston Chapter",
"addons": [
"/api/v1/product_price_addons/1"
],
"availableSeats": 42,
"activeAddons": "/api/v1/collections/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.",
"event": "/api/v1/events/1",
"productOptions": [
{
"id": 42,
"name": "Boston Chapter",
"isArchived": false,
"position": 42
}
],
"type": "MEMBER",
"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."
},
"meet": "https://meet.google.com/abc-defg-hij",
"settings": [
"string"
],
"hasVoting": true,
"sdg": [
"string"
],
"isPublic": true,
"hasEventTicketing": true,
"timezone": "America/New_York",
"isPast": true,
"status": "ACTIVE",
"newsletterEnabled": true,
"placesApiId": "ChIJOwg_06VPwokRYv534QaPC8g",
"slugGo": "agm26",
"placeLatitude": 42.3601,
"placeLongitude": -71.0589,
"gamificationPoints": 42,
"badge": {
"id": 42,
"name": "Boston Chapter",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png"
},
"customStatus": {
"id": 42,
"name": "Boston Chapter",
"color": "#16A34A",
"isFinal": true
},
"sendAttendanceReminder": true,
"sendOneHourReminder": true,
"invitesSent": true,
"requiresRegistrationForm": true,
"maxCapacity": 42,
"registrationManuallyClosed": true,
"registrationFormText": "string",
"allowedUserType": {
"id": 42,
"name": "Boston Chapter"
}
}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
Event identifier
Body
The new Event resource
Show child attributes
Show child attributes
"/api/v1/units/1"
"/api/v1/products/1"
Show child attributes
Show child attributes
"/api/v1/event_statuses/1"
2000"/api/v1/roles/1"
Response
Event resource created
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
2000Show child attributes
Show child attributes

