v11
latestOpenAPI 3.1.12026-08-03174162.0 MBEvents
Update an event
Update an event using either its unique ID or URL-friendly slug
put/events/{key}
Path parameters
keystring required
Event key - either a unique ID (evt_xxx format) or URL-friendly slug
Example:evt_01jps5cgsenjrazw6wswmyspa3
Request body
Example request
{
"id": "evt_01jps5cgsenjrazw6wswmyspa3",
"name": "Test Event",
"slug": "test-event",
"description": "This is only a test...",
"visibility": "PUBLIC",
"currency": "AUD",
"url": "https://example.com/events/summer-festival-2025",
"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
}
},
"promoterId": "pmt_01jqpjksnsen9vprw95et60t2m",
"genres": [
"Tech House",
"Melodic Techno"
],
"categories": [
"Day Party",
"Open Air",
"Free Entry"
],
"featured": true,
"locationId": "loc_01jqpjksnsen9vprw95et60t2m",
"googlePlaceId": "ChIJN1t_tDeuEmsRUsoyG83frY4",
"notify": true
}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
}
}