Get a paginated list of cron jobs with optional filters
TypeScript
import { cuey } from 'cuey'; const { data: crons, pagination } = await cuey.crons.list({ page: 0, limit: 10, is_active: true });
{ "data": [ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "cron_expression": "<string>", "webhook_url": "<string>", "method": "GET", "timezone": "<string>", "headers": {}, "payload": {}, "retry_config": { "maxRetries": 5, "backoffMs": 2550, "backoffType": "exponential" }, "is_active": true, "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a" } ], "pagination": { "page": 123, "limit": 123, "total": 123 } }
API key authentication. Include your API key in the Authorization header as: Bearer
Page number (0-indexed)
x >= 0
Items per page
1 <= x <= 1000
Filter by active status
Success
Show child attributes