PUT Alerts Issued Schedule
The PUT /Alerts/Issued/Schedule method is used to create or update the schedule for delivery of issued certificate request alerts configured in Keyfactor Command. This method returns HTTP 200 OK on a success with details of the schedule for issued certificate request alerts.
Tip: The following permissions (see
Security Overview) are required to use this feature:
WorkflowManagement: Modify
Table 137: PUT Alerts Issued Schedule Input Parameters
Schedule |
Body |
An array indicating the schedule for delivery of the issued request alerts. Show schedule details.Interval | A dictionary that indicates a job scheduled to run every x minutes with the specified parameter. Any interval that is selected in the UI will be converted to minutes when stored in the database.Minutes | An integer indicating the number of minutes between each interval. |
For example, every hour: "Interval": {
"Minutes": 60
} | Daily | A dictionary that indicates a job scheduled to run every day at the same time with the parameter: Time | The date and time to next run the job. The date and time should be given using the ISO 8601 UTC time format YYYY-MM-DDTHH:mm:ss.000Z (e.g. 2021-05-19T16:23:01Z). |
For example, daily at 11:30 pm: "Daily": {
"Time": "2022-02-25T23:30:00Z"
} |
|
Table 138: PUT Alerts Issued Schedule Response Data
Schedule |
An array indicating the schedule for delivery of the issued request alerts. Show schedule details.Interval | A dictionary that indicates a job scheduled to run every x minutes with the specified parameter. Any interval that is selected in the UI will be converted to minutes when stored in the database.Minutes | An integer indicating the number of minutes between each interval. |
For example, every hour: "Interval": {
"Minutes": 60
} | Daily | A dictionary that indicates a job scheduled to run every day at the same time with the parameter: Time | The date and time to next run the job. The date and time should be given using the ISO 8601 UTC time format YYYY-MM-DDTHH:mm:ss.000Z (e.g. 2021-05-19T16:23:01Z). |
For example, daily at 11:30 pm: "Daily": {
"Time": "2022-02-25T23:30:00Z"
} |
|
Tip: For code examples, see the
Keyfactor API Endpoint Utility. To find the embedded web copy of this utility, click the help icon (

) at the top of the
Keyfactor Command Management Portal page next to the
Log Out button.