From d4cb83ed4166c49d6e59f0f3bf4ff692f56e64ba Mon Sep 17 00:00:00 2001 From: mithunP-45 Date: Thu, 5 Mar 2026 09:03:19 +0530 Subject: [PATCH 1/2] Updated Job Run API description --- source/includes/acts/post_api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/includes/acts/post_api.md b/source/includes/acts/post_api.md index 1d6bdcf51a8..59c70493480 100644 --- a/source/includes/acts/post_api.md +++ b/source/includes/acts/post_api.md @@ -1514,7 +1514,7 @@ IRestResponse response = client.Execute(request); ### 16. Job Run -This section outlines how to trigger a job run using the designated API endpoint. The endpoint runs a job for a specified tenant and returns a response indicating whether the job was successfully initiated. +This section outlines how to trigger a job run for Batch Job, Data Import Job, or Data Export Job using the designated API endpoint. The endpoint sets run_now_ind = Yes for a job for a specified tenant and returns a response indicating whether the job record was successfully updated. **Job Run POST Endpoint** From b40a7d5c6c0188cfd46fe43439b53cd510baebca Mon Sep 17 00:00:00 2001 From: mithunP-45 Date: Thu, 5 Mar 2026 10:50:15 +0530 Subject: [PATCH 2/2] Update the know limitation --- source/includes/acts/post_api.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/source/includes/acts/post_api.md b/source/includes/acts/post_api.md index 59c70493480..bfd373f5828 100644 --- a/source/includes/acts/post_api.md +++ b/source/includes/acts/post_api.md @@ -1516,9 +1516,13 @@ IRestResponse response = client.Execute(request); This section outlines how to trigger a job run for Batch Job, Data Import Job, or Data Export Job using the designated API endpoint. The endpoint sets run_now_ind = Yes for a job for a specified tenant and returns a response indicating whether the job record was successfully updated. + + **Job Run POST Endpoint** -`POST` /actsapi/v1/job/run +`POST` /actsapi/v1/job/[tenant]/run > Example Request & JSON Input Body @@ -1526,7 +1530,7 @@ This section outlines how to trigger a job run for Batch Job, Data Import Job, o var request = require("request"); var options = { method: 'POST', - url: 'https://[tenant].actsapi.intelex.com/actsapi/v1/job/run', + url: 'https://[tenant].actsapi.intelex.com/actsapi/v1/job/[tenant]/run', headers: { 'content-type': 'application/json' }, body: { @@ -1543,7 +1547,7 @@ request(options, function (error, response, body) { ``` ```csharp -var client = new RestClient("https://[tenant].actsapi.intelex.com/actsapi/v1/job/run"); +var client = new RestClient("https://[tenant].actsapi.intelex.com/actsapi/v1/job/[tenant]/run"); var request = new RestRequest(Method.POST); request.AddHeader("content-type", "application/json"); request.AddParameter("application/json", "{\"jobType\":\"BATCH_JOB\",\"jobIds\":[25]}", ParameterType.RequestBody);