Troubleshooting
Beta: Get information of a batch of documents
Gives various information that would help in debugging related to a batch of documents. Currently in beta, might undergo breaking changes without prior notice.
Tip: Refer to the Troubleshooting tutorial for more information.
post/api/index/v1/debug/{datasource}/documents
Path parameters
datasourcestring required
The datasource to which the document belongs
Request body
Example request
{
"debugDocuments": [
{
"objectType": "Article",
"docId": "art123"
}
]
}Response
OK
Example response
{
"documentStatuses": [
{
"debugInfo": {
"status": {
"uploadStatus": "UPLOADED",
"lastUploadedAt": "2021-08-06T17:58:01.000Z",
"indexingStatus": "INDEXED",
"lastIndexedAt": "2021-08-06T17:58:01.000Z",
"permissionIdentityStatus": "UPLOADED"
}
}
}
]
}