Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
List of knowledge base files retrieved successfully
curl --request GET \
--url https://prod.featherhq.com/api/v1/knowledge-base/files \
--header 'Authorization: Bearer <token>'{
"files": [
{
"id": "<string>",
"fileName": "<string>",
"status": "PENDING",
"createdAt": "<string>",
"updatedAt": "<string>",
"collectionIds": [
"<string>"
],
"prompt": "<string>",
"size": 123,
"url": "<string>"
}
]
}curl --request GET \
--url https://prod.featherhq.com/api/v1/knowledge-base/files \
--header 'Authorization: Bearer <token>'{
"files": [
{
"id": "<string>",
"fileName": "<string>",
"status": "PENDING",
"createdAt": "<string>",
"updatedAt": "<string>",
"collectionIds": [
"<string>"
],
"prompt": "<string>",
"size": 123,
"url": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
List of knowledge base files retrieved successfully
Show child attributes