$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "schemaVersion": "1.1",
< "asOf": "2026-08-05T12:00:00Z",
< "rows": [
< {
< "itemId": "case-001",
< "openedAt": "2026-08-05T08:00:00Z",
< "dueAt": "2026-08-05T10:00:00Z",
< "resolvedAt": "2026-08-05T09:30:00Z"
< },
< {
< "itemId": "case-002",
< "openedAt": "2026-08-05T08:00:00Z",
< "dueAt": "2026-08-05T09:00:00Z",
< "resolvedAt": "2026-08-05T09:30:00Z"
< },
< {
< "itemId": "case-003",
< "openedAt": "2026-08-05T08:00:00Z",
< "dueAt": "2026-08-05T09:00:00Z",
< "resolvedAt": null
< },
< {
< "itemId": "case-004",
< "openedAt": "2026-08-05T11:00:00Z",
< "dueAt": "2026-08-05T13:00:00Z",
< "resolvedAt": null
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/zinin~us-brand-signal-sla-checker/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'