Silverflow
Quick Start
- Sign up at silverflow.com and obtain API credentials
- Create a terminal in the Admin Console with the parameters below
- Start processing — the adapter is pre-built and ready to use
Overview
Silverflow payment integration
| Provider ID | silverflow |
| Category | Card Processors |
| Website | silverflow.com |
Authentication
Method: Basic Auth
Header:
Authorization: Basic base64(api_key:api_secret)
Example:
api_key = "sk_live_abc123"
api_secret = "secret_xyz"
auth = Base.encode64("#{api_key}:#{api_secret}")
# Authorization: Basic c2tfbGl2ZV9hYmMxMjM6c2VjcmV0X3h5eg==