Get sessions
Returns a paginated list of sessions. Filter by room, course, lecturer, date range, and more. Use include[] to request additional data in the response.
- Type: integerlimitmin:1max:1000
Maximum number of objects to return. Range: 1–1000.
- Type: integerskipmin:0
Number of objects to skip for pagination.
- Type: stringinclude[]
An array of object names to include in the returned payload.
- Type: stringfilter[room
_ids] A comma-separated list of Room IDs to filter sessions by.
- Type: stringfilter[room
_external _ids] A comma-separated list of Room external IDs to filter sessions by.
- Type: stringfilter[course
_ids] A comma-separated list of Course IDs to filter sessions by.
- Type: stringfilter[lecturer
_profile _ids] A comma-separated list of lecturer Profile IDs to filter sessions by.
- Type: stringfilter[guest
_lecturer _profile _ids] A comma-separated list of guest lecturer Profile IDs to filter sessions by.
- Type: stringfilter[any
_lecturer _profile _ids] A comma-separated list of guest lecturer or lecturer Profile IDs to filter sessions by.
- Type: stringfilter[on
_at] Filter sessions that are occurring at a specific date and time.
- Type: stringfilter[starts
_after] Filter sessions that start after a specific date and time.
- Type: stringfilter[starts
_before] Filter sessions that start before a specific date and time.
- Type: stringfilter[ends
_after] Filter sessions that end after a specific date and time.
- Type: stringfilter[ends
_before] Filter sessions that end before a specific date and time.
- application/json
- application/json
- application/json
curl 'https://ff-business-school.fullfabric.cloud/apis/sessions?limit=10&skip=0&include[]=&filter[room_ids]=&filter[room_external_ids]=&filter[course_ids]=&filter[lecturer_profile_ids]=&filter[guest_lecturer_profile_ids]=&filter[any_lecturer_profile_ids]=&filter[on_at]=&filter[starts_after]=&filter[starts_before]=&filter[ends_after]=&filter[ends_before]=' \
--header 'FF-Auth: YOUR_SECRET_TOKEN'
[
{
"id": "6385baad976a7719120008f0",
"title": "Corporate Finance – Lecture 1: Capital Structure",
"course_id": "6385baad976a7719120008ca",
"room_id": null,
"starts_on": "2025-04-14T09:00:00.000Z",
"ends_on": "2025-04-14T12:00:00.000Z",
"location": "Room 301, London Campus",
"lecturer_profile_ids": [
"6385baad976a771912000894"
],
"guest_lecturer_profile_ids": []
},
{
"id": "6385baad976a7719120008e4",
"title": "Marketing Strategy Workshop",
"course_id": "6385baad976a7719120008cb",
"room_id": null,
"starts_on": "2025-04-21T13:00:00.000Z",
"ends_on": "2025-04-21T17:00:00.000Z",
"location": "Seminar Room B, London Campus",
"lecturer_profile_ids": [
"6385baad976a7719120008c5"
],
"guest_lecturer_profile_ids": [
"6385baad976a771912000894"
]
}
]