$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "targets": [
< {
< "id": "basf-texas",
< "name": "BASF Texas EPA Watch",
< "criticality": "high",
< "owner": "EHS / Compliance",
< "tags": "chemical,texas,epa",
< "facilityName": "BASF",
< "state": "TX",
< "facilitySearch": {
< "nameMatchMode": "CONTAINS"
< },
< "complianceScreener": {
< "years": 5,
< "activeOnly": true,
< "nameMatchMode": "CONTAINS",
< "evidenceLimit": 5
< }
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/taroyamada~epa-enforcement-digest/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'