JobsRegistry
Get Job History Detail
Retrieves a job history detail with its associated workflow and jobs.
GET
/
api
/
jobs-registry
/
histories
/
{id}
Get Job History Detail
curl --request GET \
--url https://{baseUrl}/api/v1/api/jobs-registry/histories/{id}import requests
url = "https://{baseUrl}/api/v1/api/jobs-registry/histories/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://{baseUrl}/api/v1/api/jobs-registry/histories/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{baseUrl}/api/v1/api/jobs-registry/histories/{id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"tools": [
{
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"name": "<string>",
"description": "<string>",
"command": "<string>",
"category": "subdomains",
"version": "<string>",
"logoUrl": "<string>",
"isBuiltIn": true,
"isInstalled": true,
"isOfficialSupport": true,
"type": "built_in",
"providerId": "<string>",
"priority": 0,
"availableWorkersCount": 123,
"status": "pending"
}
],
"workflowName": "<string>",
"jobHistoryName": "<string>"
}⌘I
Get Job History Detail
curl --request GET \
--url https://{baseUrl}/api/v1/api/jobs-registry/histories/{id}import requests
url = "https://{baseUrl}/api/v1/api/jobs-registry/histories/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://{baseUrl}/api/v1/api/jobs-registry/histories/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{baseUrl}/api/v1/api/jobs-registry/histories/{id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"tools": [
{
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"name": "<string>",
"description": "<string>",
"command": "<string>",
"category": "subdomains",
"version": "<string>",
"logoUrl": "<string>",
"isBuiltIn": true,
"isInstalled": true,
"isOfficialSupport": true,
"type": "built_in",
"providerId": "<string>",
"priority": 0,
"availableWorkersCount": 123,
"status": "pending"
}
],
"workflowName": "<string>",
"jobHistoryName": "<string>"
}