$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "dataRoom": {
< "company": "Example Technology Inc.",
< "stage": "seed",
< "roundTarget": "Seed - USD 1.5M",
< "flags": {
< "regulated": false,
< "physicalProduct": false,
< "incentive": true
< },
< "statuses": {
< "01-01": {
< "status": "have",
< "date": "2026-03-10",
< "note": ""
< },
< "01-02": {
< "status": "have",
< "date": "2026-03-10",
< "note": ""
< },
< "01-05": {
< "status": "missing",
< "date": null,
< "note": ""
< },
< "02-01": {
< "status": "have",
< "date": "2026-02-28",
< "note": "Audited"
< },
< "02-04": {
< "status": "partial",
< "date": "2026-06-30",
< "note": "Q2 pending"
< },
< "03-01": {
< "status": "have",
< "date": "2025-11-15",
< "note": "Needs refresh"
< },
< "08-01": {
< "status": "missing",
< "date": null,
< "note": ""
< }
< }
< }
<}
<EOF
$curl "https://api.apify.com/v2/actors/bloom-consulting~investor-data-room-check/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'