curl -X PATCH \
-H "X-API-KEY: your_api_key" \
-H "Content-Type: application/json" \
-d '{
"name": "Summer Launch Party — Updated",
"capacity": 500,
"registration_status": "open"
}' \
"https://www.gomry.com/api/v1/events/AbCdEfGhIjKlMnOpQrSt"
{
"data": {
"id": "AbCdEfGhIjKlMnOpQrSt",
"name": "Summer Launch Party — Updated",
"status": "active",
"registration_status": "open",
"currency": "usd",
"capacity": 500,
"tickets_sold": 12,
"start": { "utc": "2026-07-15T22:00:00.000Z", "timezone": "America/New_York" },
"end": { "utc": "2026-07-16T02:00:00.000Z", "timezone": "America/New_York" },
"venue": { "name": "Convention Center, New York", "address": "Convention Center, New York" },
"created_at": "2026-05-24T10:00:00.000Z",
"updated_at": "2026-05-24T10:15:00.000Z"
}
}
{
"error": "At least one field is required"
}
{
"error": "end must be after start"
}
{
"error": "Event not found"
}
{
"error": "insufficient_scope",
"message": "This API key does not have 'write' access to 'events'.",
"required_scope": "events:write"
}
Events
Update Event
Partially update an event in your organization
PATCH
/
events
/
{event_id}
curl -X PATCH \
-H "X-API-KEY: your_api_key" \
-H "Content-Type: application/json" \
-d '{
"name": "Summer Launch Party — Updated",
"capacity": 500,
"registration_status": "open"
}' \
"https://www.gomry.com/api/v1/events/AbCdEfGhIjKlMnOpQrSt"
{
"data": {
"id": "AbCdEfGhIjKlMnOpQrSt",
"name": "Summer Launch Party — Updated",
"status": "active",
"registration_status": "open",
"currency": "usd",
"capacity": 500,
"tickets_sold": 12,
"start": { "utc": "2026-07-15T22:00:00.000Z", "timezone": "America/New_York" },
"end": { "utc": "2026-07-16T02:00:00.000Z", "timezone": "America/New_York" },
"venue": { "name": "Convention Center, New York", "address": "Convention Center, New York" },
"created_at": "2026-05-24T10:00:00.000Z",
"updated_at": "2026-05-24T10:15:00.000Z"
}
}
{
"error": "At least one field is required"
}
{
"error": "end must be after start"
}
{
"error": "Event not found"
}
{
"error": "insufficient_scope",
"message": "This API key does not have 'write' access to 'events'.",
"required_scope": "events:write"
}
Update Event
Partially updates an event. Only the fields supplied in the body are written — omitted fields are left unchanged. The event must belong to the organization associated with the API key; cross-org requests return404 Not Found with no information leak.
Requires the events:write scope.
Path Parameters
string
required
Event ID (the canonical 20-character document ID, e.g.
AbCdEfGhIjKlMnOpQrSt).Request Body
At least one field is required. Unknown fields are rejected with400.
string
Event name (1–200 chars). Triggers a taxonomy + search-relevance
re-index in the background.
string
Long-form description shown on the event page. Triggers a re-index.
object
object | null
Same shape as
start. Pass null to clear the end time (open-ended
event). When both start and end are present, end must be strictly
after start and the timezones must match.object
string
Convenience — a
https://... URL is stored as the virtual meeting
link, anything else is stored as venue.address. If you need finer
control over venue fields, use venue instead.integer
Maximum number of tickets that can be sold.
0 means unlimited.string
ISO-4217 currency code.
boolean
Hide the event from public listings.
boolean
Whether ticket prices are tax-inclusive.
boolean
Allow attendees to RSVP (maybe / not going) in addition to confirming.
string
Public URL of the cover image.
enum
open or closed. When closed, the public registration form is
hidden and new bookings are rejected. Existing attendees are unaffected.enum
none, email, or email_and_phone. Controls what an attendee must
provide on the registration form.boolean
Absorb the Gomry service fee into the ticket price rather than adding it at checkout.This is the event-wide default. Changing it moves every ticket class that has no
setting of its own; a class that has been given an explicit
remove_service_fees keeps
it and is unaffected — see
Update Ticket Class.object
Response
Returns the updated event as serialized byGET /events/{event_id}.
curl -X PATCH \
-H "X-API-KEY: your_api_key" \
-H "Content-Type: application/json" \
-d '{
"name": "Summer Launch Party — Updated",
"capacity": 500,
"registration_status": "open"
}' \
"https://www.gomry.com/api/v1/events/AbCdEfGhIjKlMnOpQrSt"
{
"data": {
"id": "AbCdEfGhIjKlMnOpQrSt",
"name": "Summer Launch Party — Updated",
"status": "active",
"registration_status": "open",
"currency": "usd",
"capacity": 500,
"tickets_sold": 12,
"start": { "utc": "2026-07-15T22:00:00.000Z", "timezone": "America/New_York" },
"end": { "utc": "2026-07-16T02:00:00.000Z", "timezone": "America/New_York" },
"venue": { "name": "Convention Center, New York", "address": "Convention Center, New York" },
"created_at": "2026-05-24T10:00:00.000Z",
"updated_at": "2026-05-24T10:15:00.000Z"
}
}
{
"error": "At least one field is required"
}
{
"error": "end must be after start"
}
{
"error": "Event not found"
}
{
"error": "insufficient_scope",
"message": "This API key does not have 'write' access to 'events'.",
"required_scope": "events:write"
}

