Sign in

Create SCA provider

documented

Create an SCA provider for a merchant profile.

POST /v1/sca/providers.{format}SCA Providersno implementation yet0 runs
No 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/sca/providers.json" \
  -X POST \
  -u "{{SPREEDLY_API_KEY}}:{{SPREEDLY_SECRET}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"sca_provider": {"merchant_profile_key": "{{$merchant_profile_key}}","type":"{{$type}}","sandbox":{{$sandbox}},"mastercard": {"acquirer_bin": "{{$mastercard_bin}}","merchant_url": "{{$mastercard_merchant_url}}","merchant_password": "{{$mastercard_merchant_password}}"},"visa": {"acquirer_bin": "{{$visa_bin}}","merchant_url": "{{$visa_merchant_url}}","merchant_password": "{{$visa_merchant_password}}","merchant_brand_id": "{{$visa_merchant_brand_id}}"},"amex": {"acquirer_bin": "{{$amex_bin}}","merchant_url": "{{$amex_merchant_url}}","merchant_password": "{{$amex_merchant_password}}"}}}'