POST
/api/im/remote/bindings/{bindingId}/fs/list
Relay directory listing to daemon
List a directory on the daemon (15s timeout). Body is forwarded verbatim.
data shape is { entries: Array<{ name: string, type: "file" | "dir" | "symlink", size?: number, mtime?: string }> }.
当前语言暂无代码示例
参数
| Field | Type | Req | Default | Description |
|---|---|---|---|---|
| bindingId | string | Y | — |
请求体
| Field | Type | Req | Default | Description |
|---|---|---|---|---|
| path | string | N | — | |
| glob | string | N | — | Optional glob pattern (e.g. `**/*.ts`). |
响应示例
{
"ok": true,
"data": {
"entries": [
{
"name": "app.ts",
"type": "file",
"size": 2341,
"mtime": "2026-04-19T09:50:00Z"
},
{
"name": "routes",
"type": "dir"
}
]
}
}Try it out
Path Parameters
→ /api/im/remote/bindings/{bindingId}/fs/list
Sign in to use your API key
Request Body
Response
Click Execute to test