Create receiver
documentedProvision a new payment method receiver.
POST /v1/receivers.{format}Receiversno 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://core.spreedly.com/v1/receivers.{{$format}}" \
-X POST \
-H "Accept: application/{{$format}}" \
-H "Content-Type: application/{{$format}}" \
-H "Authorization: Basic {{SPREEDLY_API_KEY}}:{{SPREEDLY_SECRET}}" \
-d '{"receiver": {"receiver_type": "{{$receiver_type}}", "hostnames": "{{$hostnames}}", "credentials": [ {"name": "{{$cred_name_1}}", "value": "{{$cred_value_1}}", "safe": {{$cred_safe_1}} }, {"name": "{{$cred_name_2}}", "value": "{{$cred_value_2}}", "safe": {{$cred_safe_2}} } ] } }'"