Update meeting spot

PUT/manage/events/:eventId/meeting-spots/:spotId

Update a meeting spot. Requires the meetingSpotsWrite permission.

AuthLogin required

Path parameters

eventIdstringrequired

Event ID or slug.

spotIdstringrequired

Meeting spot ID.

Request body

namestring

Ticket name; required on create. Up to 100 characters (surrounding whitespace is trimmed).

descriptionstring

Description; up to 500 characters.

languagesobject

Localized name / description.

capacitynumber

Capacity; an integer of 1 or more (required on create).

activeboolean

Whether the spot is active.

imageUrlstring

Image URL; must be a valid URL.

locationobject

Location details.

availableTimes / blockedTimesobject[]

Available / blocked time ranges.

tableLimitnumber

Number of tables usable at once; an integer of 1 or more.

ticketIdsstring[]

Ticket IDs allowed to use this spot; an empty array means all tickets.

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/meeting-spots/SPOT_ID \
-X PUT \
-H "Authorization: Bearer 4s_at_..." \
-H "Content-Type: application/json" \
-d '{
"capacity": 6,
"active": false
}'
Example response
{
"id": "ms1a2b3-...",
"name": "Meeting Table A",
"description": "...",
"capacity": 4,
"active": true,
"imageUrl": "https://.../spot.png",
"tableLimit": 2,
"ticketIds": [],
"order": 0
}