curl --request GET \
--url https://app.all-hands.dev/api/conversations/{conversation_id}/list-files \
--header 'Authorization: Bearer <token>'
[
"<string>"
]
List files in the specified path
curl --request GET \
--url https://app.all-hands.dev/api/conversations/{conversation_id}/list-files \
--header 'Authorization: Bearer <token>'
[
"<string>"
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Conversation ID
Path to list files from
List of files
The response is of type string[]
.
Was this page helpful?