$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "schemaVersion": "1.1",
< "signal": {
< "signalId": "nike-recall-001",
< "signalType": "recall",
< "headline": "Nike issues a limited product recall",
< "summary": "The buyer supplied this normalized recall signal for review by a downstream operator.",
< "severity": "high",
< "occurredAt": "2026-08-05T12:00:00Z",
< "evidence": [
< {
< "url": "https://example.com/evidence/nike-recall-001",
< "title": "Buyer evidence record",
< "capturedAt": "2026-08-05T12:05:00Z"
< }
< ]
< },
< "target": "slack",
< "presentation": {
< "includeHeadline": true,
< "includeSummary": true,
< "includeSeverity": true,
< "includeSource": true,
< "includeOccurredAt": true,
< "maxContentChars": 600,
< "style": "standard"
< }
<}
<EOF
$curl "https://api.apify.com/v2/actors/zinin~us-brand-signal-webhook-payload-builder/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'