List Skipped Scheduled Occurrences
curl --request GET \
--url https://flowker.sandbox.lerian.net/v1/workflows/{id}/schedule/skipped \
--header 'Authorization: Bearer <token>'import requests
url = "https://flowker.sandbox.lerian.net/v1/workflows/{id}/schedule/skipped"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://flowker.sandbox.lerian.net/v1/workflows/{id}/schedule/skipped', 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://flowker.sandbox.lerian.net/v1/workflows/{id}/schedule/skipped",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://flowker.sandbox.lerian.net/v1/workflows/{id}/schedule/skipped"
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))
}HttpResponse<String> response = Unirest.get("https://flowker.sandbox.lerian.net/v1/workflows/{id}/schedule/skipped")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://flowker.sandbox.lerian.net/v1/workflows/{id}/schedule/skipped")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"occurrences": [
{
"attempts": 1,
"createdAt": "2026-01-15T10:30:00Z",
"cronExpr": "0 9 * * *",
"id": "018f3e2a-1c4d-7b9e-a1b2-c3d4e5f6a7b8",
"scheduledFor": "2026-01-15T10:30:00Z",
"status": "skipped",
"timezone": "America/Sao_Paulo",
"updatedAt": "2026-01-15T10:30:00Z",
"workflowId": "018f3e2a-1c4d-7b9e-a1b2-c3d4e5f6a7b8",
"lastError": "provider timeout after 30s",
"skipReason": "active-run"
}
]
}{
"code": "FLK-0001",
"detail": "name is a required field",
"errors": [
{
"location": "body.nodes",
"message": "expected array length >= 1",
"value": "<unknown>"
}
],
"instance": "/v1/workflows",
"status": 400,
"title": "Bad Request",
"type": "https://errors.lerian.studio/v1/FLK-0001"
}List Skipped Scheduled Occurrences
Use this endpoint to list a workflow’s skipped scheduled occurrences, ordered oldest first. Each occurrence carries the reason it was skipped.
GET
/
v1
/
workflows
/
{id}
/
schedule
/
skipped
List Skipped Scheduled Occurrences
curl --request GET \
--url https://flowker.sandbox.lerian.net/v1/workflows/{id}/schedule/skipped \
--header 'Authorization: Bearer <token>'import requests
url = "https://flowker.sandbox.lerian.net/v1/workflows/{id}/schedule/skipped"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://flowker.sandbox.lerian.net/v1/workflows/{id}/schedule/skipped', 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://flowker.sandbox.lerian.net/v1/workflows/{id}/schedule/skipped",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://flowker.sandbox.lerian.net/v1/workflows/{id}/schedule/skipped"
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))
}HttpResponse<String> response = Unirest.get("https://flowker.sandbox.lerian.net/v1/workflows/{id}/schedule/skipped")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://flowker.sandbox.lerian.net/v1/workflows/{id}/schedule/skipped")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"occurrences": [
{
"attempts": 1,
"createdAt": "2026-01-15T10:30:00Z",
"cronExpr": "0 9 * * *",
"id": "018f3e2a-1c4d-7b9e-a1b2-c3d4e5f6a7b8",
"scheduledFor": "2026-01-15T10:30:00Z",
"status": "skipped",
"timezone": "America/Sao_Paulo",
"updatedAt": "2026-01-15T10:30:00Z",
"workflowId": "018f3e2a-1c4d-7b9e-a1b2-c3d4e5f6a7b8",
"lastError": "provider timeout after 30s",
"skipReason": "active-run"
}
]
}{
"code": "FLK-0001",
"detail": "name is a required field",
"errors": [
{
"location": "body.nodes",
"message": "expected array length >= 1",
"value": "<unknown>"
}
],
"instance": "/v1/workflows",
"status": 400,
"title": "Bad Request",
"type": "https://errors.lerian.studio/v1/FLK-0001"
}Authorizations
JWT bearer token issued by the identity provider. Send it in the Authorization header as Bearer <token>.
Path Parameters
Workflow identifier (UUID).
Example:
"018f3e2a-1c4d-7b9e-a1b2-c3d4e5f6a7b8"
Query Parameters
Maximum number of occurrences to return (1-50).
Example:
"10"
Response
Indicates that the request was successful and the response contains the requested data.
Show child attributes
Show child attributes
Was this page helpful?
⌘I

