Session & Event
List Session Resources
List the resources currently mounted to a session
cURL
Copy
curl --request GET \
--url 'https://{workspace_id}.{region}.maas.aliyuncs.com/api/v1/agentstudio/sessions/{session_id}/resources' \
--header 'Authorization: Bearer <YOUR_API_KEY>'Copy
{
"data": [
{
"id": "sesrsc_xxx",
"type": "file",
"file_id": "file_xxx",
"mount_path": "/mnt/session/uploads/data.csv",
"created_at": "2026-05-28T08:23:11.456000Z",
"updated_at": "2026-05-28T08:23:11.456000Z"
},
{
"id": "sesrsc_yyy",
"type": "file",
"file_id": "file_yyy",
"mount_path": "/mnt/session/uploads/late.csv",
"created_at": "2026-05-28T08:25:00.000000Z",
"updated_at": "2026-05-28T08:25:00.000000Z"
}
],
"next_page": "page_xxxxxxxxxxxxx",
"request_id": "xxx"
}