$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "workflow": "collect",
< "companyBoards": [
< "airbnb"
< ],
< "jobTargets": [],
< "department": "",
< "location": "",
< "keywords": [],
< "firstPublishedAfter": "",
< "remoteOnly": false,
< "includeContent": true,
< "includeQuestions": false,
< "includePayRanges": false,
< "stateNamespace": "default",
< "firstRunBehavior": "seed_only",
< "maxJobs": 100,
< "maxJobsPerBoard": 500,
< "maxRuntimeSecs": 60,
< "maxBuyerChargeUsd": 5
<}
<EOF
$curl "https://api.apify.com/v2/actors/luminar~greenhouse-jobs-change-monitor/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'