api_access_token: ********************curl --location --request GET 'http://localhost:3030/platform/api/v1/documents?assistant_id' \
--header 'api_access_token: <api-key>'{
"success": true,
"documents": [
{
"id": 456,
"name": "Product Manual",
"external_link": "https://example.com/manual.pdf",
"content": "This is the content of the product manual...",
"assistant_id": 123,
"assistant_name": "Customer Support Bot",
"account_id": 789,
"status": "in_progress",
"faqs_count": 5,
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
}
],
"total_count": 3,
"message": "Documents retrieved successfully"
}