Sign in

Verify transaction

documented

Verify a payment method or card data via Spreedly's verifier.

POST /v1/transactions/verify.{format}Transactionsno 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/transactions/verify.{{$format}}" \
  -X POST \
  -u "{{SPREEDLY_API_KEY}}:{{SPREEDLY_SECRET}}" \
  -H "Content-Type: application/{{$format}}" \
  -H "Accept: application/{{$format}}" \
  -d '{"transaction": {"credit_card": {"first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "number": "{{$number}}", "verification_value": "{{$cvv}}", "month": "{{$month}}", "year": "{{$year}}"}, "retain_on_success": {{$retain_on_success}}, "workflow_key": "{{$workflow_key}}"}}'
Verify transaction · Spreedly · OpenIntegrations