$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "vendors": [
< {
< "id": "stripe",
< "name": "Stripe",
< "criticality": "high",
< "owner": "Procurement",
< "tags": [
< "payments",
< "renewal-q3",
< "strategic vendor"
< ],
< "urlPacks": {
< "pricing": [
< {
< "id": "stripe-pricing",
< "name": "Stripe Pricing",
< "url": "https://stripe.com/pricing",
< "includePatterns": [
< "pricing",
< "annual",
< "enterprise",
< "billing"
< ],
< "excludePatterns": [
< "cookie",
< "sign in"
< ]
< }
< ],
< "terms": [
< {
< "id": "stripe-terms",
< "name": "Stripe Services Agreement",
< "url": "https://stripe.com/legal/ssa",
< "includePatterns": [
< "fees",
< "renewal",
< "termination",
< "liability"
< ],
< "excludePatterns": [
< "cookie",
< "sign in"
< ]
< }
< ]
< }
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/acts/taroyamada~vendor-change-monitor/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'