Automation
Get v1automationrunsstats
cURL
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url https://api.wazapin.com/v1/automation/runs/statsconst options = {method: 'GET'};
fetch('https://api.wazapin.com/v1/automation/runs/stats', 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/stats"
response = requests.get(url)
print(response.text){
"cancelled": 123,
"failed": 123,
"queued": 123,
"running": 123,
"succeeded": 123,
"total": 123
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": [
{
"message": "<string>",
"code": "<string>",
"field": "<string>",
"location": "<string>"
}
],
"request_id": "<string>"
}
}curl --request GET \
--url https://api.wazapin.com/v1/automation/runs/statsconst options = {method: 'GET'};
fetch('https://api.wazapin.com/v1/automation/runs/stats', 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/stats"
response = requests.get(url)
print(response.text){
"cancelled": 123,
"failed": 123,
"queued": 123,
"running": 123,
"succeeded": 123,
"total": 123
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": [
{
"message": "<string>",
"code": "<string>",
"field": "<string>",
"location": "<string>"
}
],
"request_id": "<string>"
}
}