v72

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

Beta: Get user information

Gives various information that would help in debugging related to a particular user. 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}/user

Path parameters

datasourcestring required

The datasource to which the user belongs

Request body

emailstring required

Email ID of the user to get the status for

Example request

{
  "email": "u1@foo.com"
}

Response

OK

Example response

{
  "status": {
    "isActiveUser": true,
    "uploadStatus": "UPLOADED",
    "lastUploadedAt": "2021-08-06T17:58:01.000Z"
  }
}