-
Notifications
You must be signed in to change notification settings - Fork 137
PKI List Jobs REST API
Endi S. Dewata edited this page Oct 27, 2022
·
1 revision
-
Path:
/<subsystem>/rest/jobs
-
Method:
GET
-
Authentication: User must be a member of
Administrators
group or a job owner -
Content: None
-
Success code:
200
$ curl \ -k \ -s \ -H "Accept: application/json" \ --user caadmin:Secret.123 \ https://localhost.localdomain:8443/ca/rest/jobs | python -m json.tool { "total": 4, "entries": [ { "id": "certRenewalNotifier", "enabled": false, "cron": "0 3 * * 1-5", "pluginName": "RenewalNotificationJob", "parameters": {} }, { "id": "publishCerts", "enabled": false, "cron": "0 0 * * 2", "pluginName": "PublishCertsJob", "parameters": {} }, { "id": "requestInQueueNotifier", "enabled": false, "cron": "0 0 * * 0", "pluginName": "RequestInQueueJob", "parameters": {} }, { "id": "unpublishExpiredCerts", "enabled": false, "cron": "0 0 * * 6", "pluginName": "UnpublishExpiredJob", "parameters": {} } ] }
Tip
|
To find a page in the Wiki, enter the keywords in search field, press Enter, then click Wikis. |