Get Workflow Runs
curl --request GET \
--url https://app.asisso.com/api/v1/workflow/{workflow_id}/runsimport requests
url = "https://app.asisso.com/api/v1/workflow/{workflow_id}/runs"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.asisso.com/api/v1/workflow/{workflow_id}/runs', 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://app.asisso.com/api/v1/workflow/{workflow_id}/runs",
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://app.asisso.com/api/v1/workflow/{workflow_id}/runs"
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://app.asisso.com/api/v1/workflow/{workflow_id}/runs")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.asisso.com/api/v1/workflow/{workflow_id}/runs")
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{
"runs": [
{
"id": 123,
"workflow_id": 123,
"name": "<string>",
"mode": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"is_completed": true,
"transcript_url": "<string>",
"recording_url": "<string>",
"cost_info": {},
"definition_id": 123,
"initial_context": {},
"gathered_context": {},
"logs": {},
"annotations": {}
}
],
"total_count": 123,
"page": 123,
"limit": 123,
"total_pages": 123,
"applied_filters": [
{}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Runs
List Runs
Retrieve all runs for a workflow
GET
/
api
/
v1
/
workflow
/
{workflow_id}
/
runs
Get Workflow Runs
curl --request GET \
--url https://app.asisso.com/api/v1/workflow/{workflow_id}/runsimport requests
url = "https://app.asisso.com/api/v1/workflow/{workflow_id}/runs"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.asisso.com/api/v1/workflow/{workflow_id}/runs', 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://app.asisso.com/api/v1/workflow/{workflow_id}/runs",
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://app.asisso.com/api/v1/workflow/{workflow_id}/runs"
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://app.asisso.com/api/v1/workflow/{workflow_id}/runs")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.asisso.com/api/v1/workflow/{workflow_id}/runs")
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{
"runs": [
{
"id": 123,
"workflow_id": 123,
"name": "<string>",
"mode": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"is_completed": true,
"transcript_url": "<string>",
"recording_url": "<string>",
"cost_info": {},
"definition_id": 123,
"initial_context": {},
"gathered_context": {},
"logs": {},
"annotations": {}
}
],
"total_count": 123,
"page": 123,
"limit": 123,
"total_pages": 123,
"applied_filters": [
{}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Returns all runs for the given workflow, including both test runs and live call runs.
Path Parameters
Query Parameters
JSON-encoded filter criteria
Field to sort by (e.g., 'duration', 'created_at')
Sort order ('asc' or 'desc')
⌘I