Sessions
Get a specific session by ID
API Documentation
Ranking Key
Staff History
Workspace
Sessions
Orders
Sessions
Get a specific session by ID
GET
/
sessions
/
{sessionId}
curl --request GET \
--url https://api.readmin.app/sessions/{sessionId} \
--header 'loader-id: <api-key>'
{
"success": true,
"session": {
"_id": "<string>",
"groupId": "<string>",
"id": "<string>",
"templateId": "<string>",
"claims": [
"<string>"
],
"attendees": [
"<string>"
],
"comments": [
{
"id": "<string>",
"authorId": "<string>",
"note": "<string>",
"deleteable": true,
"attachments": [
"<string>"
],
"created": "2023-11-07T05:31:56Z"
}
],
"servers": {},
"date": "2023-11-07T05:31:56Z",
"notifyTime": "2023-11-07T05:31:56Z",
"endsAt": "2023-11-07T05:31:56Z",
"created": "2023-11-07T05:31:56Z",
"createdBy": "<string>",
"sentDMS": true,
"sentStartMessage": true,
"sentEndMessage": true,
"oneOffSession": true,
"template": {
"name": "<string>",
"description": "<string>",
"sessionDuration": 123,
"placeId": "<string>",
"createDiscordEvent": true,
"images": {
"thumbnail": "<string>"
}
},
"createdDiscordEvent": true
}
}
Authorizations
Path Parameters
Response
200 - application/json
Details of the session
curl --request GET \
--url https://api.readmin.app/sessions/{sessionId} \
--header 'loader-id: <api-key>'
{
"success": true,
"session": {
"_id": "<string>",
"groupId": "<string>",
"id": "<string>",
"templateId": "<string>",
"claims": [
"<string>"
],
"attendees": [
"<string>"
],
"comments": [
{
"id": "<string>",
"authorId": "<string>",
"note": "<string>",
"deleteable": true,
"attachments": [
"<string>"
],
"created": "2023-11-07T05:31:56Z"
}
],
"servers": {},
"date": "2023-11-07T05:31:56Z",
"notifyTime": "2023-11-07T05:31:56Z",
"endsAt": "2023-11-07T05:31:56Z",
"created": "2023-11-07T05:31:56Z",
"createdBy": "<string>",
"sentDMS": true,
"sentStartMessage": true,
"sentEndMessage": true,
"oneOffSession": true,
"template": {
"name": "<string>",
"description": "<string>",
"sessionDuration": 123,
"placeId": "<string>",
"createDiscordEvent": true,
"images": {
"thumbnail": "<string>"
}
},
"createdDiscordEvent": true
}
}