How to enable Orbital Token on a merchant.
Provider as "orbital" for processing token-based payments. Orbital provides secure payment processing services that allow businesses to process payments using tokenized card data. Their platform supports various transaction types and provides robust security features for payment processing.
Features
✅ Payment Authorization Payments can be authorized by customers using Token. ✅ Payment Capture Payment authorizations made using Token payment methods can be captured. This step happens automatically with CHARGE transactions.
Resources
Configuration
Contact your Orbital representative to obtain the required connection credentials and merchant information. You will need merchantID
, username
, password
, host
, and bin
to configure this provider.
This table describes the required or possible attributes needed to configure a merchant product for this type.
Name | Type | Description | Rules |
---|---|---|---|
merchantID | string | (required) Merchant ID for Orbital. Examples: MERCHANT123. | |
username | string | (required) Username for Orbital API. Examples: username123. | |
password | string | (required) Password for Orbital API. Examples: password123. | |
host | string | Host to be used for Orbital. | |
bin | string | Bank Identification Number (BIN) for Orbital. Examples: 000001. | |
terminalId | string | Terminal ID for Orbital. Examples: 1234567890. |
Enabling this Product
Using create-merchant-product API you can add a new product to your merchant record. Below is an example configuration for the payload of that request.
{
"line": "payments",
"product": "token",
"provider": "orbital",
"config": {
"merchantID": "MERCHANT123",
"username": "username123",
"password": "password123",
"bin": "000001",
"terminalId": "1234567890"
}
}