Skip to main content

Credit Card

Credit card information may be required based on the hotel setting in SynXis CR.

 

Supported Credit Cards Types

Payment TypeCode
American ExpressAX
Carte BlancheCB
China Union PayUP
Diners ClubDN
Discover CardDS
Euro CardEC
ForbrugsforeningskortFB
Japanese Credit Bureau Credit CardJC
MaestroSW
Master CardMC
VisaVI

 

Request Parameters

ParameterDescriptionTypeRequired
Guests/Payments/@RoleSpecifies the role of a payment method. 
Values: Alternate, Business, Personal, Primary, Secondary
StringNo
Guests/Payments/@TypeSpecifies the type of a payment method. 
Values: CreditCard
StringNo
PaymentCard/@CardCodeCode of a credit card.StringNo
PaymentCard/@CardHolderSpecifies who is the card holder.StringNo
PaymentCard/@CardNumberNumber of a credit card.IntegerNo
PaymentCard/@CardSecurityCodeSecurity code of a credit card.IntegerNo
PaymentCard/@ExpireDateExpiration date of a credit card (MMYY).IntegerNo
PaymentCard/@TokenToken number associated with the card. Response Parameter OnlyStringNo

 

Sample Request (Partial)

{
    "Guests": [{
        "Payments": [{
            "Role": "Primary",
            "Type": "CreditCard",
            "PaymentCard": {
                "CardCode": "VI",
                "CardHolder": "Larry Walker",
                "CardName": "Visa",
                "CardNumber": "4444444444444444",
                "CardSecurityCode": "123",
                "CompanyName": "Sabre",
                "ExpireDate": "1225"
            }
        }]
    }]
}