Session & Event
列出会话资源
分页列出会话当前已挂载的资源
cURL
复制
curl --request GET \
--url 'https://dashscope.aliyuncs.com/api/v1/agentstudio/sessions/{session_id}/resources' \
--header 'Authorization: Bearer <YOUR_API_KEY>'复制
{
"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"
}