Acontext
Learning_spacesIdSessions

List sessions in space

GET
/learning_spaces/{id}/sessions

List all learning session records for a space, including their processing status.

Authorization

BearerAuth
Authorization<token>

Project Bearer token (e.g., "Bearer sk-ac-xxxx")

In: header

Path Parameters

id*string

Learning space UUID

Response Body

application/json

curl -X GET "https://loading/api/v1/learning_spaces/string/sessions"
{
  "code": 0,
  "error": "string",
  "msg": "string",
  "data": [
    {
      "created_at": "string",
      "id": "string",
      "learning_space_id": "string",
      "session_id": "string",
      "status": "string",
      "updated_at": "string"
    }
  ]
}