curl --request GET \
--url https://api.ionworks.com/pipelines/elements/{element_id}/progressimport requests
url = "https://api.ionworks.com/pipelines/elements/{element_id}/progress"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.ionworks.com/pipelines/elements/{element_id}/progress', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ionworks.com/pipelines/elements/{element_id}/progress",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.ionworks.com/pipelines/elements/{element_id}/progress"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.ionworks.com/pipelines/elements/{element_id}/progress")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ionworks.com/pipelines/elements/{element_id}/progress")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"element_id": "<string>",
"status": "pending",
"progress": {
"multistarts_total": 123,
"multistarts_by_status": {},
"best_cost": 123
},
"best_index": 123,
"traces": [
{
"index": 123,
"status": "pending",
"cost": 123,
"history": [
{}
]
}
],
"traces_complete": false
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Multistart progress for a Data Fit element
Multistart roll-up plus convergence traces, keyed by element.
This is the one resource a running Data Fit is polled through. The UI never enumerates the child jobs itself: a 100-start fit used to cost a request per child (and again on every window focus), which is what tripped the per-IP edge rate limit for offices behind one address. Traces are keyed by multistart index, so child job ids never reach the browser.
curl --request GET \
--url https://api.ionworks.com/pipelines/elements/{element_id}/progressimport requests
url = "https://api.ionworks.com/pipelines/elements/{element_id}/progress"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.ionworks.com/pipelines/elements/{element_id}/progress', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ionworks.com/pipelines/elements/{element_id}/progress",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.ionworks.com/pipelines/elements/{element_id}/progress"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.ionworks.com/pipelines/elements/{element_id}/progress")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ionworks.com/pipelines/elements/{element_id}/progress")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"element_id": "<string>",
"status": "pending",
"progress": {
"multistarts_total": 123,
"multistarts_by_status": {},
"best_cost": 123
},
"best_index": 123,
"traces": [
{
"index": 123,
"status": "pending",
"cost": 123,
"history": [
{}
]
}
],
"traces_complete": false
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Path Parameters
Query Parameters
Which convergence traces to include: the best multistart only (cheap enough to poll), or every multistart (one storage read per child; fetch once, on request).
best, all Response
Successful Response
Response from GET /pipelines/elements/{element_id}/progress.
pending, running, completed, failed, skipped, canceled Multistart roll-up for a Data Fit element, computed server-side so the UI never has to enumerate child jobs.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Was this page helpful?