From 842d9dfe99abafd0964478d7e8cd1e1c7d39e47d Mon Sep 17 00:00:00 2001 From: 20107589 Vincent Liefooghe Date: Thu, 9 Apr 2026 18:57:09 +0200 Subject: [PATCH 1/2] Update chap-scheduler-conf.adoc Fix the URI for schedulers (scheduler/job vs scheduler) --- .../chap-scheduler-conf.adoc | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/openidm-doc/src/main/asciidoc/integrators-guide/chap-scheduler-conf.adoc b/openidm-doc/src/main/asciidoc/integrators-guide/chap-scheduler-conf.adoc index c67b6897d..250c441ac 100644 --- a/openidm-doc/src/main/asciidoc/integrators-guide/chap-scheduler-conf.adoc +++ b/openidm-doc/src/main/asciidoc/integrators-guide/chap-scheduler-conf.adoc @@ -353,7 +353,7 @@ $ curl \ } } }' \ - "https://localhost:8443/openidm/scheduler/testlog-schedule" + "https://localhost:8443/openidm/scheduler/job/testlog-schedule" { "type": "cron", "invokeService": "script", @@ -394,7 +394,7 @@ $ curl \ } } }' \ - "https://localhost:8443/openidm/scheduler?_action=create" + "https://localhost:8443/openidm/scheduler/job?_action=create" { "type": "cron", "invokeService": "script", @@ -426,7 +426,7 @@ $ curl \ --header "X-OpenIDM-Username: openidm-admin" \ --header "X-OpenIDM-Password: openidm-admin" \ --request GET \ - "https://localhost:8443/openidm/scheduler/d6d1b256-7e46-486e-af88-169b4b1ad57a" + "https://localhost:8443/openidm/scheduler/job/d6d1b256-7e46-486e-af88-169b4b1ad57a" { "_id": "d6d1b256-7e46-486e-af88-169b4b1ad57a", "schedule": "0/1 * * * * ?", @@ -479,7 +479,7 @@ $ curl \ } } }' \ - "https://localhost:8443/openidm/scheduler/d6d1b256-7e46-486e-af88-169b4b1ad57a" + "https://localhost:8443/openidm/scheduler/job/d6d1b256-7e46-486e-af88-169b4b1ad57a" null ---- @@ -487,7 +487,7 @@ $ curl \ [#listing-schedules] ==== Listing Configured Schedules -To display a list of all configured schedules, query the `openidm/scheduler` context path as shown in the following example: +To display a list of all configured schedules, query the `openidm/scheduler/job` context path as shown in the following example: [source, console] ---- @@ -496,7 +496,7 @@ $ curl \ --header "X-OpenIDM-Username: openidm-admin" \ --header "X-OpenIDM-Password: openidm-admin" \ --request GET \ - "https://localhost:8443/openidm/scheduler?_queryId=query-all-ids" + "https://localhost:8443/openidm/scheduler/job?_queryId=query-all-ids" { "remainingPagedResults": -1, "pagedResultsCookie": null, @@ -527,7 +527,7 @@ $ curl \ --header "X-OpenIDM-Username: openidm-admin" \ --header "X-OpenIDM-Password: openidm-admin" \ --request DELETE \ - "https://localhost:8443/openidm/scheduler/d6d1b256-7e46-486e-af88-169b4b1ad57a" + "https://localhost:8443/openidm/scheduler/job/d6d1b256-7e46-486e-af88-169b4b1ad57a" null ---- @@ -546,7 +546,7 @@ $ curl \ --header "X-OpenIDM-Username: openidm-admin" \ --header "X-OpenIDM-Password: openidm-admin" \ --request POST \ - "http://localhost:8080/openidm/scheduler?_action=listCurrentlyExecutingJobs" + "http://localhost:8080/openidm/scheduler/job?_action=listCurrentlyExecutingJobs" [ { "concurrentExecution": false, @@ -585,7 +585,7 @@ $ curl \ --header "X-OpenIDM-Username: openidm-admin" \ --header "X-OpenIDM-Password: openidm-admin" \ --request POST \ - "https://localhost:8443/openidm/scheduler?_action=pauseJobs" + "https://localhost:8443/openidm/scheduler/job?_action=pauseJobs" { "success": true } @@ -606,7 +606,7 @@ $ curl \ --header "X-OpenIDM-Username: openidm-admin" \ --header "X-OpenIDM-Password: openidm-admin" \ --request POST \ - "https://localhost:8443/openidm/scheduler?_action=resumeJobs" + "https://localhost:8443/openidm/scheduler/job?_action=resumeJobs" { "success": true } From 099a51b0c0830db687e6b185a69d7f45bfd4a649 Mon Sep 17 00:00:00 2001 From: Maxim Thomas Date: Fri, 10 Apr 2026 15:16:23 +0300 Subject: [PATCH 2/2] Apply suggestion from @maximthomas --- .../main/asciidoc/integrators-guide/chap-scheduler-conf.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openidm-doc/src/main/asciidoc/integrators-guide/chap-scheduler-conf.adoc b/openidm-doc/src/main/asciidoc/integrators-guide/chap-scheduler-conf.adoc index 250c441ac..1a578319f 100644 --- a/openidm-doc/src/main/asciidoc/integrators-guide/chap-scheduler-conf.adoc +++ b/openidm-doc/src/main/asciidoc/integrators-guide/chap-scheduler-conf.adoc @@ -12,7 +12,7 @@ information: "Portions copyright [year] [name of copyright owner]". Copyright 2017 ForgeRock AS. - Portions Copyright 2024-2025 3A Systems LLC. + Portions Copyright 2024-2026 3A Systems LLC. //// :figure-caption!: