FlexPay supports the Chase Paymentech Orbital gateway for both the Stratus and PNS specifications.
For more information about this gateway, please refer to https://secure.paymentech.com/devcenter/home
- Gateway type code:
chase_payment_tech
- Production API endpoint: https://orbital1.chasepaymentech.com
- Sandbox API endpoint: https://orbitalvar1.chasepaymentech.com
- Supported payment types: Credit Card, Gateway payment method token
- Supported operations: Authorization, Capture, Charge, Void, Refund
To add a Chase Paymentech Orbital gateway, use the following settings:
{
"username" : "Your username",
"password" : "Your password",
"merchant_id" : "Your merchant ID",
"bin" : null
}
Note
The BIN is optional. It is only required if a MID is set up to manage Profiles at the Merchant ID level instead of the Chain ID (company) level. Please contact Chase support if you are unsure about the details of your MID configuration: https://merchantservices.chase.com/support
Gateway Specific Fields
{
"gatewaySpecificFields": {
"chase_payment_tech": {
"trace_number": "Trace number",
"industry_type": "Industry type",
"mit_msg_type": "MIT message type",
"mit_stored_credential_ind": "MIT stored credential",
"mit_submitted_transaction_id": "MIT submitted transaction id",
"sd_merchant_name": "Sd Merchant Name",
"sd_product_description": "Sd Product Description",
"sd_merchant_city": "Sd Merchant City",
"sd_merchant_phone": "Sd Merchant Phone",
"sd_merchant_url": "Sd Merchant Url",
"sd_merchant_email": "Sd Merchant Email",
"smd_city": "Smd City",
"smd_email": "Smd Email",
"smd_region": "Smd Region",
"smd_street": "Smd Street",
"smd_contact_info": "Smd Contact Info",
"smd_country_code": "Smd Country Code",
"smd_phone_number": "Smd Phone Number",
"smd_postal_code": "Smd Postal Code",
"smd_dba": "Smd Dba",
"smd_mcc": "Smd Mcc",
"smd_merchant_id": "Smd Merchant Id",
"tax": "Tax",
"tax_ind": "Tax Ind",
"pc_order_num": "Pc Order Num",
"pc_dest_zip": "Pc Dest Zip",
"pc_dest_name": "Pc Dest Name",
"pc_dest_address1": "Pc Dest Address 1",
"pc_dest_address2": "Pc Dest Address 2",
"pc_dest_city": "Pc Dest City",
"pc_dest_state": "Pc Dest State",
"amex_tran_adv_addn1": "Amex Tran Adv Addn 1",
"amex_tran_adv_addn2": "Amex Tran Adv Addn 2",
"amex_tran_adv_addn3": "Amex Tran Adv Addn 3",
"amex_tran_adv_addn4": "Amex Tran Adv Addn 4"
}
}
}
Gateway Specific Response Fields
A response from Chase Paymentech Orbital gateway may contain the following fields:
HostRespCode
, HostAVSRespCode
, MITReceivedTransactionID
which you can find in the gateway_specific_response_fields
. For example, a transaction could have something like this:
"gatewaySpecificResponseFields": {
"chase_payment_tech": {
"trace_number": "Trace number",
"proc_status": "0",
"HostRespCode": "100",
"HostAVSRespCode": "I3",
"MITReceivedTransactionID": "581356721605615"
}
},