Live
Create live session
Create a new live event session that you can use to go live
Authentication with the “FERMION-API-KEY” header is required to use this endpoint.
Rate limit: Maximum 60 requests in a window of 1m.
POST
/
public
/
create-live-event-session
curl --request POST \
--url https://backend.codedamn.com/api/public/create-live-event-session \
--header 'Content-Type: application/json' \
--header 'FERMION-API-KEY: <api-key>' \
--data '{
"data": [
{
"data": {
"eventTitle": "Untitled event",
"estimatedStartAtIso": "2023-11-07T05:31:56Z",
"shouldUseDrmForViewer": false,
"estimatedEventDurationInMinutes": 15
}
}
]
}'
[
{
"output": {
"status": "ok",
"data": {
"liveEventId": "<string>",
"liveEventSessionId": "<string>"
}
}
}
]
Authorizations
Body
application/json
API Request Body
The body is of type object
.
Response
200 - application/json
API Response Body
The response is of type object[]
.
curl --request POST \
--url https://backend.codedamn.com/api/public/create-live-event-session \
--header 'Content-Type: application/json' \
--header 'FERMION-API-KEY: <api-key>' \
--data '{
"data": [
{
"data": {
"eventTitle": "Untitled event",
"estimatedStartAtIso": "2023-11-07T05:31:56Z",
"shouldUseDrmForViewer": false,
"estimatedEventDurationInMinutes": 15
}
}
]
}'
[
{
"output": {
"status": "ok",
"data": {
"liveEventId": "<string>",
"liveEventSessionId": "<string>"
}
}
}
]
Assistant
Responses are generated using AI and may contain mistakes.