Query Verdict Statistics
Focus
Focus
Prisma Access

Query Verdict Statistics

Table of Contents

Query Verdict Statistics

Retrieves statistics about the Third-Party Device-ID service.

Synopsis

URI
/api/v1/token/{apiKey}/verdicts:statistics
HTTP Method
GET

Success Response

Upon success, the HTTP response code is 200. In addition, the response contains a JSON object with the following fields:
Field
Description
verdicts
Object that contains statistics about the IP address-to-device mappings in your tenant. Contains the following fields:
  • totalCount - The total number of IP address-to-device mappings in the tenant.
  • totalUpdate - The number of IP address-to-device mappings that have been updated since they were created.
  • totalDelete - The number of IP address-to-device mappings that have been deleted since your tenant was created.
requestRcvd
Object that contains the number of times the tenant received each type of request:
For example:
{ "verdicts: { "totalCount": 1, "totalUpdate": 0, "totalDelete": 0, }, "requestRcvd": { "update": 1, "deleteAll": 0, "query": 0, "statistics": 1 } }

Error Response

Upon error, the HTTP response code is one of the following:
Response Code
Description
401
Unauthorized token.
429
Too many requests. The request could not be processed because too many requests have been issued in a specific period of time. No more than one request per second is allowed. Please wait and try again.
In addition, the response body contains the following fields:
Field
Description
code
The error code.
message
The error message.

Recommended For You