Create payment link
documentedCreate a payment link.
POST /v1/payment_linksPayment Linksno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.stripe.com/v1/payment_links" \
-X POST \
-H "Authorization: Bearer {{STRIPE_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"line_items":[{"price":"{{PRICE_ID}}","quantity":1}],"after_completion":{"type":"redirect","redirect":{"url":"{{$redirect_url}}"}}}'