Create payout link
documentedCreate a payout link to send money without full banking details.
POST /payout-linksPayoutsno 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://b2b.revolut.com/api/1.0/payout-links" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"counterparty_name": "{{$counterparty_name}}", "request_id": "{{$request_id}}", "account_id": "{{$account_id}}", "amount": {{$amount}}, "currency": "{{$currency}}", "reference": "{{$reference}}", "payout_methods": {{$payout_methods}}, "expiry_date": "{{$expiry_date}}", "expiry_period": "{{$expiry_period}}", "transfer_reason_code": "{{$transfer_reason_code}}", "save_counterparty": {{$save_counterparty}}}'