$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "bills": [
< {
< "id": "2026-0042",
< "account": "CH4431999123000889012",
< "creditor": {
< "name": "Robert Schneider AG",
< "street": "Rue du Lac",
< "houseNumber": "1268",
< "postalCode": "2501",
< "city": "Biel",
< "country": "CH"
< },
< "debtor": {
< "name": "Pia-Maria Rutschmann-Schnyder",
< "street": "Grosse Marktgasse",
< "houseNumber": "28",
< "postalCode": "9400",
< "city": "Rorschach",
< "country": "CH"
< },
< "amount": 1949.75,
< "currency": "CHF",
< "reference": "210000000003139471430009017",
< "additionalInformation": "Order of 15 June 2026",
< "language": "fr"
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/najx~swiss-qr-bill-generator/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'