List stages (for managers)

GET/manage/events/:eventId/stages

List stages for management. Requires the stagesRead permission.

AuthLogin required

Path parameters

eventIdstringrequired

Event ID or slug.

Response

FieldTypeDescription
stagesStage[]Array of stages.
Request
curl https://api.4s.link/manage/events/EVENT_ID/stages \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"stages": [
{
"id": "sg1a2b3c-...",
"name": "Main Hall",
"description": "...",
"capacity": 300,
"order": 0
}
]
}