How to clone an event from an existing one

How to clone an event from an existing one

Use this guide when you need to create a new edition of a recurring event, copying settings, templates, and exhibitors from a previous edition.


Request

Bash
curl -X POST "https://your-event-domain.com/api/v2/event/set" \
  -H "Authorization: Bearer your_api_key_here" \
  -F "title=Tech Summit 2031" \
  -F "country=United Kingdom" \
  -F "city=London" \
  -F "start=14 Jun 2031 09:00" \
  -F "end=16 Jun 2031 18:00" \
  -F "clone_event_id=123"

What gets cloned

When clone_event_id is provided on a successful create, the following are copied from the source event into the new event: event settings, template configuration, and exhibitor records.


Notes

  • clone_event_id is only applied on create — it has no effect on update

  • You still need to provide all required create fields (title, country, city, start, end)

  • The new event gets its own event_id — it is fully independent after cloning