curl --request GET \
--url https://realtime-api.voiceflow.com/v1alpha1/public/knowledge-base/document \
--header 'authorization: <api-key>'{
"total": 123,
"data": [
{
"documentID": "<string>",
"data": {
"type": "csv",
"name": "<string>",
"rowsCount": 123
},
"updatedAt": "2023-11-07T05:31:56Z",
"status": {
"type": "ERROR",
"data": "<unknown>"
}
}
]
}Find all documents that match the specified criteria.
curl --request GET \
--url https://realtime-api.voiceflow.com/v1alpha1/public/knowledge-base/document \
--header 'authorization: <api-key>'{
"total": 123,
"data": [
{
"documentID": "<string>",
"data": {
"type": "csv",
"name": "<string>",
"rowsCount": 123
},
"updatedAt": "2023-11-07T05:31:56Z",
"status": {
"type": "ERROR",
"data": "<unknown>"
}
}
]
}Voiceflow Dialog Manager API key (VF.DM) or Workspace API key (VF.WS)
The page number to retrieve, defaults to 1 (which is the minimum). Order is by the date updated, descending.
The number of documents to return per page. Defaults to 10, range is 1-100.
Filters the document list by type (url, pdf, text, docx). Defaults to all document types.
csv, pdf, text, url, docx, table, xlsx Documents matching the specified criteria.
Hide child attributes
Was this page helpful?