$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "left": [
< {
< "id": "INV-100",
< "amount": "1000.00",
< "currency": "GBP",
< "date": "2026-09-01",
< "scope": "example-ledger",
< "partyKey": "customer-a",
< "reference": "INV-100"
< },
< {
< "id": "INV-200",
< "amount": "1200.00",
< "currency": "GBP",
< "date": "2026-09-01",
< "scope": "example-ledger",
< "partyKey": "customer-b",
< "reference": "INV-200"
< },
< {
< "id": "INV-301",
< "amount": "300.00",
< "currency": "GBP",
< "date": "2026-09-01",
< "scope": "example-ledger",
< "partyKey": "customer-c"
< },
< {
< "id": "INV-302",
< "amount": "200.00",
< "currency": "GBP",
< "date": "2026-09-01",
< "scope": "example-ledger",
< "partyKey": "customer-c"
< },
< {
< "id": "INV-400",
< "amount": "250.00",
< "currency": "GBP",
< "date": "2026-09-01",
< "scope": "example-ledger",
< "partyKey": "customer-d"
< }
< ],
< "right": [
< {
< "id": "PAY-100",
< "amount": "1000.00",
< "currency": "GBP",
< "date": "2026-09-01",
< "scope": "example-ledger",
< "partyKey": "customer-a",
< "reference": "INV-100"
< },
< {
< "id": "PAY-201",
< "amount": "700.00",
< "currency": "GBP",
< "date": "2026-09-01",
< "scope": "example-ledger",
< "partyKey": "customer-b",
< "reference": "INV-200"
< },
< {
< "id": "PAY-202",
< "amount": "500.00",
< "currency": "GBP",
< "date": "2026-09-01",
< "scope": "example-ledger",
< "partyKey": "customer-b",
< "reference": "INV-200"
< },
< {
< "id": "PAY-300",
< "amount": "500.00",
< "currency": "GBP",
< "date": "2026-09-01",
< "scope": "example-ledger",
< "partyKey": "customer-c"
< },
< {
< "id": "PAY-401",
< "amount": "250.00",
< "currency": "GBP",
< "date": "2026-09-01",
< "scope": "example-ledger",
< "partyKey": "customer-d"
< },
< {
< "id": "PAY-402",
< "amount": "250.00",
< "currency": "GBP",
< "date": "2026-09-01",
< "scope": "example-ledger",
< "partyKey": "customer-d"
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/zahi90~reconproof/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'