GET Analytics Certificates Issuance
The GET /Analytics/Certificates/Issuance method returns the number of certificates issued in a given time period from the current date, for each period requested. This method returns HTTP 200 OK on a success with the certificate count.
Permissions for certificates can be configured at multiple levels. You can apply them system-wide—for all certificates—or use fine-grained control by assigning permissions at the certificate collection level. The appropriate level depends on how the certificates are accessed. See Certificate Collection Permissions for more information about system-wide versus more targeted permission models.
Table 230: GET Analytics Certificates Issuance Input Parameters
| Name | In | Description |
|---|---|---|
| collectionId | Query |
Required. An integer that represents the ID of the collection to query to generate the certificate count. Use 0 for All Certificates (built-in collection). Use the GET Certificate Collections method to retrieve a list of all the certificate collections to determine the collection ID. |
| TotalPeriods | Query | Required. An integer that determines how many weeks of data to return. Must be greater than 0 and less than or equal to 52. |
Table 231: GET Analytics Certificates Issuance Response Data
| Name | In | Description |
|---|---|---|
| Period | Body |
An integer that represents the number of weeks ago from the current date that the count represents. Returns counts for each period requested, in the format:
{
"Period": 1,
"EvalDate": "2025-10-16T17:45:36Z",
"Count": 407
},
{
"Period": 2,
"EvalDate": "2025-10-16T17:45:36Z",
"Count": 59
},
|
| EvalDate | Body | A date/time string that represents the current date used to run the query (from which the periods are calculated). The date and time will be given using the ISO 8601 UTC time format YYYY-MM-DDTHH:mm:ss.000Z (e.g., 2023-11-19T16:23:01Z). |
| Count | Body |
An integer that represents the count of certificates issued in each period requested. |
Was this page helpful? Provide Feedback