Automation
Get v1automationruns
GET
/
v1
/
automation
/
runs
cURL
curl --request GET \
--url https://api.wazapin.com/v1/automation/runsconst options = {method: 'GET'};
fetch('https://api.wazapin.com/v1/automation/runs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.wazapin.com/v1/automation/runs"
response = requests.get(url)
print(response.text){
"items": [
{
"id": "<string>",
"status": "<string>",
"workflow_id": "<string>",
"workflow_version_id": "<string>",
"created_at": "<string>",
"error": "<unknown>",
"event_id": "<string>",
"input": "<unknown>",
"output": "<unknown>",
"steps": [
{
"attempt": 123,
"id": "<string>",
"max_attempts": 123,
"node_id": "<string>",
"node_type": "<string>",
"run_id": "<string>",
"status": "<string>",
"created_at": "<string>",
"error": "<unknown>",
"finished_at": "<string>",
"input": "<unknown>",
"output": "<unknown>",
"scheduled_at": "<string>",
"started_at": "<string>",
"updated_at": "<string>"
}
],
"updated_at": "<string>"
}
],
"meta": {
"has_more": true,
"limit": 123,
"cursor": "<string>",
"next_cursor": "<string>",
"offset": 123,
"total": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": [
{
"message": "<string>",
"code": "<string>",
"field": "<string>",
"location": "<string>"
}
],
"request_id": "<string>"
}
}⌘I
cURL
curl --request GET \
--url https://api.wazapin.com/v1/automation/runsconst options = {method: 'GET'};
fetch('https://api.wazapin.com/v1/automation/runs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.wazapin.com/v1/automation/runs"
response = requests.get(url)
print(response.text){
"items": [
{
"id": "<string>",
"status": "<string>",
"workflow_id": "<string>",
"workflow_version_id": "<string>",
"created_at": "<string>",
"error": "<unknown>",
"event_id": "<string>",
"input": "<unknown>",
"output": "<unknown>",
"steps": [
{
"attempt": 123,
"id": "<string>",
"max_attempts": 123,
"node_id": "<string>",
"node_type": "<string>",
"run_id": "<string>",
"status": "<string>",
"created_at": "<string>",
"error": "<unknown>",
"finished_at": "<string>",
"input": "<unknown>",
"output": "<unknown>",
"scheduled_at": "<string>",
"started_at": "<string>",
"updated_at": "<string>"
}
],
"updated_at": "<string>"
}
],
"meta": {
"has_more": true,
"limit": 123,
"cursor": "<string>",
"next_cursor": "<string>",
"offset": 123,
"total": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": [
{
"message": "<string>",
"code": "<string>",
"field": "<string>",
"location": "<string>"
}
],
"request_id": "<string>"
}
}