ProphetPay
Quick Start
- Sign up at prophetpay.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
ProphetPay payment integration
| Provider ID | prophetpay |
| Category | Card Processors |
| Website | prophetpay.com |
Authentication
Method: Basic Auth
Header:
Authorization: Basic base64(user_name:password)
Example:
user_name = "username"
password = "password"
auth = Base.encode64("#{user_name}:#{password}")
# Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=