Live
Get all live events
Get details of all live events in your school
Authentication with the “FERMION-API-KEY” header is required to use this endpoint.
Rate limit: Maximum 15 requests in a window of 1m.
POST
/
public
/
get-all-live-events
curl --request POST \
--url https://backend.codedamn.com/api/public/get-all-live-events \
--header 'Content-Type: application/json' \
--header 'FERMION-API-KEY: <api-key>' \
--data '{
"data": [
{
"data": {}
}
]
}'
[
{
"output": {
"status": "ok",
"data": {
"liveEvents": [
{
"fermionDigitalProductId": "<string>",
"liveEventId": "<string>",
"type": "LiveEventProduct",
"status": "Active",
"name": "<string>",
"slug": "<string>",
"link": "<string>",
"thumbnailUrl": "<string>",
"sessions": [
{
"liveEventSessionId": "<string>",
"scheduledStartAtIso": "2023-11-07T05:31:56Z",
"scheduledDurationInSecs": 123,
"endedAtIso": "2023-11-07T05:31:56Z"
}
]
}
]
}
}
}
]
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/get-all-live-events \
--header 'Content-Type: application/json' \
--header 'FERMION-API-KEY: <api-key>' \
--data '{
"data": [
{
"data": {}
}
]
}'
[
{
"output": {
"status": "ok",
"data": {
"liveEvents": [
{
"fermionDigitalProductId": "<string>",
"liveEventId": "<string>",
"type": "LiveEventProduct",
"status": "Active",
"name": "<string>",
"slug": "<string>",
"link": "<string>",
"thumbnailUrl": "<string>",
"sessions": [
{
"liveEventSessionId": "<string>",
"scheduledStartAtIso": "2023-11-07T05:31:56Z",
"scheduledDurationInSecs": 123,
"endedAtIso": "2023-11-07T05:31:56Z"
}
]
}
]
}
}
}
]
Assistant
Responses are generated using AI and may contain mistakes.