List meeting spots (for managers)

GET/manage/events/:eventId/meeting-spots

List all meeting spots including inactive ones. Requires the meetingSpotsRead permission.

AuthLogin required

Path parameters

eventIdstringrequired

Event ID or slug.

Response

FieldTypeDescription
meetingSpotsMeetingSpot[]Array of meeting spots.
Request
curl https://api.4s.link/manage/events/EVENT_ID/meeting-spots \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"meetingSpots": [
{
"id": "ms1a2b3-...",
"name": "Meeting Table A",
"description": "...",
"capacity": 4,
"active": true,
"imageUrl": "https://.../spot.png",
"tableLimit": 2,
"ticketIds": [],
"order": 0
}
]
}