opensesh docs

Cancel a session

POST
/events/{eventId}/sessions/{submissionId}/cancel

Cancels the session with a recorded cause (organizer or speaker). The acceptance stays on record and the schedule is kept as history; the session leaves the agenda and public pages, its open tasks are waived, and — when notifySpeakers is on — speakers get a cancellation email carrying a calendar cancellation if invites went out.

Authorization

bearerAuth
AuthorizationBearer <token>

An organization API key (osk_…)

In: header

Path Parameters

eventId*string
submissionId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/events/string/sessions/string/cancel" \  -H "Content-Type: application/json" \  -d '{    "cause": "organizer"  }'
{  "id": "string",  "cancelledAt": "string",  "cancelledBy": "organizer",  "createdEmails": 0,  "waivedTasks": 0}