Create stage

POST/manage/events/:eventId/stages

Create a stage. Requires the stagesWrite permission.

AuthLogin required

Path parameters

eventIdstringrequired

Event ID or slug.

Request body

namestringrequired

Stage name (required); no length limit.

descriptionstring

Description.

languagesobject

Localized name / description.

capacitynumber

Capacity; an integer of 1 or more.

Object structures

languages

Keyed by language code; each entry overrides the title / description shown for that language. Languages you omit fall back to the default fields.

<lang>object

Language code (ja, en, …)

<lang>.titlestring

Title shown in that language.

<lang>.descriptionstring

Description shown in that language.

{
  "ja": { "title": "オープニング基調講演", "description": "..." },
  "en": { "title": "Opening Keynote", "description": "..." }
}
Request
curl https://api.4s.link/manage/events/EVENT_ID/stages \
-X POST \
-H "Authorization: Bearer 4s_at_..." \
-H "Content-Type: application/json" \
-d '{
"name": "Main Hall",
"capacity": 300
}'
Example response
{
"id": "sg1a2b3c-...",
"name": "Main Hall",
"description": "...",
"capacity": 300,
"order": 0
}