How to enable Orbital Credit Card on a merchant.
Provider as "orbital" for tokenizing credit card information. Orbital provides secure payment processing and tokenization services that allow businesses to safely handle credit card data. Their platform supports tokenization which replaces sensitive card information with secure tokens, enhancing transaction security and PCI compliance.
Features
✅ Tokenization Credit Card payment methods can be converted to Orbital payment tokens.
✅ Auto Tokenize Can use features.auto-tokenize
to have all corresponding tender types auto converted to tokens. See tokenize for more details.
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. |
Features
All tokenize products support the following features
attributes.
Name | Values | Description |
---|---|---|
auto-tokenize | true or false (default) | Can be provided for one tokenized product per payment method type (tender type). When set, any call to create a payment method for that underlying tender will automatically be converted to a token of the defined type. |
auto-permission | single-use or use (default) | Used to determine the permission to automatically set on each token created using this tokenization provider. Setting a value of single-use will mean a token is deleted on each successful use. |
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": "tokenize",
"product": "creditcard",
"provider": "orbital",
"config": {
"merchantID": "MERCHANT123",
"username": "username123",
"password": "password123",
"bin": "000001",
"terminalId": "1234567890"
}
}