v11

latestOpenAPI 3.1.12026-08-03174162.0 MB
Events

Duplicate an event

Create a new event by copying event details, sections, and admissions from an existing event.

post/events/{key}/duplicate

Path parameters

keystring required

Event key - either a unique ID (evt_xxx format) or URL-friendly slug

Example:evt_01jps5cgsenjrazw6wswmyspa3

Request body

namestring required

Name for the duplicated event

entryStartsAtstring required

New event entry start time. Other copied event and admission datetimes are shifted by the same offset.

urlstring uri nullable

External ticketing URL for the duplicated event. Pass null to create the copy without an external URL; omit to copy the source URL.

Example request

{
  "name": "Test Event (Copy)",
  "entryStartsAt": "2026-08-04T06:13:52",
  "url": "https://example.com/events/summer-festival-2025"
}

Response

OK

Example response

{
  "event": {
    "id": "evt_01jps5cgsenjrazw6wswmyspa3",
    "createdAt": "2026-08-03T06:13:52.214Z",
    "updatedAt": "2026-08-03T06:13:52.214Z",
    "name": "Test Event",
    "slug": "test-event",
    "description": "This is only a test...",
    "approval": "APPROVED",
    "status": "UPCOMING",
    "visibility": "PUBLIC",
    "currency": "AUD",
    "url": "https://example.com",
    "entryStartsAt": "2026-08-04T06:13:52",
    "entryEndsAt": "2026-08-05T06:13:52",
    "publishAt": "2026-08-03T06:13:52",
    "images": {
      "mobile": {
        "src": "https://assets.session.services/my-image.jpg",
        "alt": "My Image",
        "width": 1080,
        "height": 1080
      },
      "desktop": {
        "src": "https://assets.session.services/my-image.jpg",
        "alt": "My Image",
        "width": 1080,
        "height": 1080
      }
    },
    "geohash": "r3gx1",
    "location": {
      "id": "loc_01hk153x00eh99pagyydz03sbz",
      "googlePlaceId": "ChIJP3Sa8ziYEmsRUKgyFmh9AQM",
      "createdAt": "2026-08-03T06:13:52.214Z",
      "updatedAt": "2026-08-03T06:13:52.214Z",
      "name": "Watson's EQ",
      "address": "The, Entertainment Quarter, 1 Bent St, Moore Park NSW 2021, Australia",
      "city": "Moore Park",
      "state": "New South Wales",
      "postcode": "2021",
      "country": "Australia",
      "latitude": -33.8944593,
      "longitude": 151.2252255,
      "timeZone": "Australia/Sydney",
      "types": [
        "establishment",
        "point_of_interest",
        "stadium"
      ],
      "description": "Historic outdoor amphitheater known for summer concerts",
      "image": {
        "src": "https://assets.session.services/my-image.jpg",
        "alt": "My Image",
        "width": 1080,
        "height": 1080
      },
      "venue": {
        "image": {
          "src": "https://assets.session.services/my-image.jpg",
          "alt": "My Image",
          "width": 1080,
          "height": 1080
        }
      }
    },
    "promoterId": "pmt_01jqpjksnsen9vprw95et60t2m",
    "genres": [
      "Tech House",
      "Melodic Techno"
    ],
    "categories": [
      "Day Party",
      "Open Air",
      "Free Entry"
    ],
    "featured": true,
    "likes": 42
  }
}