$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "schemaVersion": "1.1",
< "rows": [
< {
< "rowId": "observation-001",
< "rowDimension": "enterprise",
< "columnDimension": "accepted"
< },
< {
< "rowId": "observation-002",
< "rowDimension": "enterprise",
< "columnDimension": "review"
< },
< {
< "rowId": "observation-003",
< "rowDimension": "startup",
< "columnDimension": "accepted"
< },
< {
< "rowId": "observation-004",
< "rowDimension": "startup",
< "columnDimension": "rejected"
< },
< {
< "rowId": "observation-005",
< "rowDimension": "enterprise",
< "columnDimension": "accepted"
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/zinin~us-brand-signal-cross-tabulator/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'