List verifications

post/listverifications

Returns the information to be rendered in verification dashboard. Includes information for each document owned by user regarding their verifications.

SecurityBearerAuth
Request
query Parameters
count
integer

Maximum number of documents to return

header Parameters
X-Glean-Auth-Type
string

Auth type being used to access the endpoint (should be non-empty only for global tokens).

X-Scio-Actas
string <email>

Email address of a user on whose behalf the request is intended to be made (should be non-empty only for global tokens).

Responses
200

OK

Response Schema: application/json
Array of objects (Verification)

List of document infos that include verification related information for them.

400

Invalid request

401

Not Authorized

429

Too Many Requests

Request samples
Response samples
application/json
{
  • "documents": [
    • {
      • "state": "UNVERIFIED",
      • "metadata": {
        • "lastVerifier": {
          • "name": "George Clooney",
          • "obfuscatedId": "abc123"
          },
        • "lastVerificationTs": 0,
        • "expirationTs": 0,
        • "document": {
          • "id": "string",
          • "datasource": "string",
          • "connectorType": "API_CRAWL",
          • "docType": "string",
          • "content": {
            • "fullTextList": [
              • "string"
              ]
            },
          • "containerDocument": { },
          • "parentDocument": { },
          • "title": "string",
          • "url": "string",
          • "metadata": {
            • "container": "container",
            • "parentId": "JIRA_EN-1337",
            • "createTime": "2000-01-23T04:56:07.000Z",
            • "datasource": "datasource",
            • "author": {
              • "name": "name"
              },
            • "documentId": "documentId",
            • "updateTime": "2000-01-23T04:56:07.000Z",
            • "mimeType": "mimeType",
            • "objectType": "Feature Request",
            • "components": [
              • "Backend",
              • "Networking"
              ],
            • "status": [
              • "Done"
              ],
            • "customData": {
              • "someCustomField": "someCustomValue"
              }
            },
          • "sections": [
            • {
              • "title": "string",
              • "url": "string"
              }
            ]
          },
        • "reminders": [
          • {
            • "assignee": {
              • "name": "George Clooney",
              • "obfuscatedId": "abc123"
              },
            • "requestor": {
              • "name": "George Clooney",
              • "obfuscatedId": "abc123"
              },
            • "remindAt": 0,
            • "createdAt": 0,
            • "reason": "string"
            }
          ],
        • "lastReminder": {
          • "assignee": {
            • "name": "George Clooney",
            • "obfuscatedId": "abc123"
            },
          • "requestor": {
            • "name": "George Clooney",
            • "obfuscatedId": "abc123"
            },
          • "remindAt": 0,
          • "createdAt": 0,
          • "reason": "string"
          },
        • "visitorCount": [
          • {
            • "count": 0,
            • "period": {
              • "minDaysFromNow": 0,
              • "maxDaysFromNow": 0,
              • "start": {
                • "epochSeconds": null,
                • "daysFromNow": null
                },
              • "end": {
                • "epochSeconds": null,
                • "daysFromNow": null
                }
              },
            • "org": "string"
            }
          ],
        • "candidateVerifiers": [
          • {
            • "name": "George Clooney",
            • "obfuscatedId": "abc123"
            }
          ]
        }
      }
    ]
}