POST
/
debug
/
{datasource}
/
status
curl --request POST \
  --url https://{domain}-be.glean.com/api/index/v1/debug/{datasource}/status \
  --header 'Authorization: Bearer <token>'
{
  "documents": {
    "bulkUploadHistory": {},
    "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": {},
      "counts": {
        "uploaded": 15
      }
    },
    "groups": {
      "bulkUploadHistory": {},
      "counts": {
        "uploaded": 15
      }
    },
    "memberships": {
      "bulkUploadHistory": {},
      "counts": {
        "uploaded": 15
      }
    }
  },
  "datasourceVisibility": "ENABLED_FOR_ALL"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

datasource
string
required

The datasource to get debug status for.

Response

200
application/json; charset=UTF-8
OK

Describes the response body of the /debug/{datasource}/status API call

documents
object
identity
object
datasourceVisibility
enum<string>

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

Available options:
ENABLED_FOR_ALL,
ENABLED_FOR_TEST_GROUP,
NOT_ENABLED
Example:

"ENABLED_FOR_ALL"

Was this page helpful?