---
title: "Update an event"
method: PUT
path: "/events/{key}"
tags: ["Events"]
---

# Update an event

`PUT /events/{key}`

Update an event using either its unique ID or URL-friendly slug

## Path parameters

- `key` string, required — Event key - either a unique ID (evt_xxx format) or URL-friendly slug

## Request body

- object
  - `id` string — A unique identifier for this event
  - `name` string — The title of the event shown to attendees
  - `slug` string — URL-friendly slug for the event. Omit to leave unchanged. Must be unique and between 3 and 100 characters
  - `description` string — Detailed description of the event. Omit to leave unchanged.
  - `visibility` 'PUBLIC' | 'PRIVATE' | 'SCHEDULED' | 'PASSCODE' | 'CANCELLED' — Who can see the event
  - `currency` 'AED' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BZD' | 'CAD' | 'CHF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'ISK' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MNT' | 'MOP' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SEK' | 'SGD' | 'SHP' | 'SLE' | 'SRD' | 'SVC' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XOF' | 'XPF' | 'ZAR' | 'ZMW' | 'ZWL' — Three-letter ISO 4217 currency code used for ticket prices
  - `url` string, uri, nullable — External event URL. Pass null to clear; omit to leave unchanged.
  - `entryStartsAt` string — Wall clock time when event entry begins (no timezone, displays same everywhere)
  - `entryEndsAt` string — Wall clock time when event entry ends (no timezone, displays same everywhere)
  - `publishAt` string — Wall clock time when the event becomes publicly visible (no timezone)
  - `locationRevealAt` string, nullable — Deprecated. Use location.sendAt for customer access and location.publishAt for scheduled public address visibility.
  - `entryInstructions` string, nullable — Deprecated. Use location.instructions for customer-facing arrival instructions.
  - `images` object
    - `mobile` object, required — Mobile-optimized image for the event
      - `src` string, uri, required
      - `alt` string, required
      - `width` number, required
      - `height` number, required
    - `desktop` object, required — Desktop-optimized image for the event
      - `src` string, uri, required
      - `alt` string, required
      - `width` number, required
      - `height` number, required
  - `teamId` string — Team that owns this event. Denormalized for efficient queries.
  - `promoterId` string — Promoter organizing the event. Must belong to the team.
  - `metadata` object — Flexible key-value metadata storage for custom configuration. Similar to Stripe's metadata API. Maximum 50 keys, key names up to 40 characters, values up to 500 characters.
  - `genres` string[] — Music genres for the event (1-5 genres)
  - `categories` string[] — Event characteristics like vibe, venue type, and amenities (up to 10)
  - `featured` boolean — Whether this event is an editorial pick
  - `passcode` string, nullable — Passcode for protected access. Pass null to clear; changing visibility away from PASSCODE also clears it.
  - `locationId` string — ID of an existing location to update to. Either locationId or googlePlaceId can be provided.
  - `googlePlaceId` string — Google Place ID to update location from. Either locationId or googlePlaceId can be provided.
  - `location` object — Event-specific location visibility, public publish time, customer send time, and arrival instructions.
    - `visibility` 'HIDDEN' | 'SCHEDULED' | 'PUBLIC' — Whether public event surfaces show the full location address. Omit to leave unchanged.
    - `publishAt` string, nullable — Wall clock time when the location address becomes public. Required when location visibility is SCHEDULED.
    - `sendAt` string, nullable — Wall clock time when customers with successful orders can see the full location address and receive the notification.
    - `instructions` string, nullable — Arrival instructions shown to customers once the location address has been sent.
  - `notify` boolean — Whether attendees should be notified about this event update.

## Response `200`

OK

- object
  - `event` Event, required — event
    - `id` string, required — A unique identifier for this event
    - `createdAt` string, date-time, required — Timestamp in ISO 8601 format when this event was created
    - `updatedAt` string, date-time, required — Timestamp in ISO 8601 format when this event was last updated
    - `name` string, required — The title of the event shown to attendees
    - `slug` string, required — URL-friendly identifier for the event
    - `description` string, required — Detailed description of the event
    - `approval` 'PENDING' | 'APPROVED' | 'REJECTED', required — Approval status of the event
    - `status` 'UPCOMING' | 'ENDED', required — Current stage of the event lifecycle
    - `visibility` 'PUBLIC' | 'PRIVATE' | 'SCHEDULED' | 'PASSCODE' | 'CANCELLED', required — Who can see the event
    - `currency` 'AED' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BZD' | 'CAD' | 'CHF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'ISK' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MNT' | 'MOP' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SEK' | 'SGD' | 'SHP' | 'SLE' | 'SRD' | 'SVC' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XOF' | 'XPF' | 'ZAR' | 'ZMW' | 'ZWL', required — Three-letter ISO 4217 currency code used for ticket prices
    - `url` string, uri — External URL for the event website or ticket page
    - `entryStartsAt` string, required — Wall clock time when event entry begins (no timezone, displays same everywhere)
    - `entryEndsAt` string, required — Wall clock time when event entry ends (no timezone, displays same everywhere)
    - `publishAt` string, required — Wall clock time when the event becomes publicly visible (no timezone)
    - `locationRevealAt` string — Deprecated. Use location.sendAt for customer access and location.publishAt for scheduled public address visibility.
    - `entryInstructions` string — Deprecated. Use location.instructions for customer-facing arrival instructions.
    - `images` object, required
      - `mobile` object, required — Mobile-optimized image for the event
        - `src` string, uri, required
        - `alt` string, required
        - `width` number, required
        - `height` number, required
      - `desktop` object, required — Desktop-optimized image for the event
        - `src` string, uri, required
        - `alt` string, required
        - `width` number, required
        - `height` number, required
    - `geohash` string, required — Geohash representing the event location
    - `location` object, required — Structured location details for the event
      - `id` string, required — Location identifier
      - `googlePlaceId` string — Google Place ID for this location
      - `createdAt` string, date-time, required — Timestamp in ISO 8601 format when the location was created
      - `updatedAt` string, date-time, required — Timestamp in ISO 8601 format when the location was last updated
      - `name` string, required — Location name
      - `address` string, required — Formatted address
      - `city` string — City name
      - `state` string — State or region
      - `postcode` string — Postal code
      - `country` string, required — Country name
      - `latitude` number, required — Latitude coordinate
      - `longitude` number, required — Longitude coordinate
      - `timeZone` string, required — IANA timezone identifier (e.g., 'America/New_York', 'Europe/London', 'Australia/Sydney', 'UTC'). Must be validated against the IANA timezone database where used.
      - `types` string[] — Google Place types indicating the category and nature of this location
      - `description` string — AI-generated description of the place, when available
      - `image` object — Primary location photo
        - `src` string, uri, required
        - `alt` string, required
        - `width` number, required
        - `height` number, required
      - `venue` object — Denormalized venue details if this location is a managed venue. Only included when venue is approved.
        - `id` string, required — Venue identifier
        - `name` string, required — Venue name
        - `slug` string, required — URL-friendly venue slug
        - `teamId` string, required — Team that owns this venue
        - `approval` 'PENDING' | 'APPROVED' | 'REJECTED', required — Venue approval status
        - `image` object — Venue image
          - `src` string, uri, required
          - `alt` string, required
          - `width` number, required
          - `height` number, required
        - `description` string — Venue description
      - `visibility` 'HIDDEN' | 'SCHEDULED' | 'PUBLIC' — Whether public event surfaces show the full location address. Missing values are treated as PUBLIC unless legacy location reveal data says otherwise.
      - `publishAt` string — Wall clock time when the location address becomes public. Required when location visibility is SCHEDULED.
      - `sendAt` string — Wall clock time when customers with successful orders can see the full location address and receive the notification.
      - `instructions` string — Arrival instructions shown to customers once the location address has been sent.
    - `teamId` string, required — Team that owns this event. Denormalized for efficient queries.
    - `promoterId` string, required — Promoter organizing the event. Must belong to the team.
    - `metadata` object — Flexible key-value metadata storage for custom configuration. Similar to Stripe's metadata API. Maximum 50 keys, key names up to 40 characters, values up to 500 characters.
    - `genres` string[] — Music genres for the event (1-5 genres)
    - `categories` string[] — Event characteristics like vibe, venue type, and amenities (up to 10)
    - `featured` boolean — Whether this event is an editorial pick
    - `likes` integer — Number of users who liked this event
    - `stripeConnectAvailability` object — Stripe Connect availability metadata for tenant event UI.
      - `available` boolean, required — Whether Stripe Connect can be used for the selected team, event, and currency.
      - `reasons` string[], required — Machine-readable reasons Stripe Connect is unavailable. Empty when available is true.
      - `supportedCurrencies` string[], required — Currencies currently supported for Stripe Connect routing in this tenant flow.

## Other responses

- `400` — 400
- `401` — 401
- `403` — 403
- `404` — 404
- `409` — 409
- `412` — 412
- `422` — 422
- `429` — 429
- `500` — 500
- `501` — 501
- `503` — 503

---

[API](https://skmtc.net/session/apis/session-services-api.md) · [All operations](https://skmtc.net/session/apis/session-services-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/session/session-services-api/versions/a1bb6f6c8a2e/schema)
