Listar ejecuciones
curl --request GET \
--url https://api.notifique.dev/v1/automations/{automationId}/runs \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.notifique.dev/v1/automations/{automationId}/runs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/v1/automations/{automationId}/runs"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/v1/automations/{automationId}/runs"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true
}Runs
Listar ejecuciones
Lista ejecuciones de una automatización.
GET
/
v1
/
automations
/
{automationId}
/
runs
Listar ejecuciones
curl --request GET \
--url https://api.notifique.dev/v1/automations/{automationId}/runs \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.notifique.dev/v1/automations/{automationId}/runs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/v1/automations/{automationId}/runs"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/v1/automations/{automationId}/runs"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true
}Autorizaciones
ntfAutoBearerAuthntfAutoApiKeyHeader
Authorization: Bearer sk_live_...
Parámetros de ruta
Cuida la automatización.
Parámetros de consulta
Filtro opcional. Valores: QUEUED, RUNNING, COMPLETED, FAILED, CANCELLED.
Opciones disponibles:
QUEUED, RUNNING, COMPLETED, FAILED, CANCELLED Respuesta
Lista de rones.
Resposta JSON vazia (sucesso sem payload).
Ejemplo:
true
¿Esta página le ayudó?

