v72

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-0745100116.4 KB
Troubleshooting

Beta: Get datasource status

Gather information about the datasource's overall status. 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}/status

Path parameters

datasourcestring required

The datasource to get debug status for.

Response

OK

datasourceVisibility'ENABLED_FOR_ALL' | 'ENABLED_FOR_TEST_GROUP' | 'NOT_ENABLED'

The visibility of the datasource, an enum of VISIBLE_TO_ALL, VISIBLE_TO_TEST_GROUP, NOT_VISIBLE

Example response

{
  "documents": {
    "bulkUploadHistory": [
      {
        "uploadId": "upload-id-content-1707403081",
        "startTime": "2021-08-06T17:58:01.000Z",
        "endTime": "2021-08-06T18:58:01.000Z",
        "status": "SUCCESSFUL",
        "processingState": "UPLOAD COMPLETED"
      }
    ],
    "counts": {
      "uploaded": [
        {
          "objectType": "Article",
          "count": 15
        }
      ],
      "indexed": [
        {
          "objectType": "Article",
          "count": 15
        }
      ]
    },
    "processingHistory": [
      {
        "startTime": "2021-08-06T17:58:01.000Z",
        "endTime": "2021-08-06T18:58:01.000Z"
      }
    ]
  },
  "identity": {
    "processingHistory": [
      {
        "startTime": "2021-08-06T17:58:01.000Z",
        "endTime": "2021-08-06T18:58:01.000Z"
      }
    ],
    "users": {
      "bulkUploadHistory": [
        {
          "uploadId": "upload-id-content-1707403081",
          "startTime": "2021-08-06T17:58:01.000Z",
          "endTime": "2021-08-06T18:58:01.000Z",
          "status": "SUCCESSFUL",
          "processingState": "UPLOAD COMPLETED"
        }
      ],
      "counts": {
        "uploaded": 15
      }
    },
    "groups": {
      "bulkUploadHistory": [
        {
          "uploadId": "upload-id-content-1707403081",
          "startTime": "2021-08-06T17:58:01.000Z",
          "endTime": "2021-08-06T18:58:01.000Z",
          "status": "SUCCESSFUL",
          "processingState": "UPLOAD COMPLETED"
        }
      ],
      "counts": {
        "uploaded": 15
      }
    },
    "memberships": {
      "bulkUploadHistory": [
        {
          "uploadId": "upload-id-content-1707403081",
          "startTime": "2021-08-06T17:58:01.000Z",
          "endTime": "2021-08-06T18:58:01.000Z",
          "status": "SUCCESSFUL",
          "processingState": "UPLOAD COMPLETED"
        }
      ],
      "counts": {
        "uploaded": 15
      }
    }
  },
  "datasourceVisibility": "ENABLED_FOR_ALL"
}