Create Installment Plan
POST/
Once you are ready to check your customer out, you can use the Create
endpoint.
Create
enables you to pass in PCI sensitive data directly to the Splitit API,
and thus requires SAQ-D PCI certification.
A successful Create
operation creates an authorization on a customer's credit
card, and if AutoCapture
has been set to true
within the request body, both
authorization and capture of the first installment will be completed (if AutoCapture
is set to false, you will
have to call Update Plan later). If Splitit is unable
to successfully secure an authorization on
a credit card, an error message will be returned in the response. Note that for funded
plans, a customer's BillingAddress
object must be filled out.
In addition, if you are completely managing the input of PCI sensitive data on
your side, it’s essential to ensure your customer has approved the Splitit
specific terms and conditions.
Request
Header Parameters
Possible values: [None
, Regular
, Fast
, Automation
]
- application/json
Body
Indicates whether to capture the first installment automatically when creating the plan, or to wait for explicit indication to do the first capture (the default is true)
Indicates whether to run a 3D secure verification (default is false
)
Indicates that the shopper accepted your Terms and Conditions
Shopper
object
required
PlanData
object
required
The total order amount
When populated will be used to display as default in Payment Form
The merchant terminal identifier
Possible values: [InStore
, PhoneOrder
, ECommerce
]
How purchase was made (default is ECommerce
)
Reference order number for merchant's use
ExtendedParams
object
Additional data that can be added as key/value pair parameters by merchant (and later can be retrieved by GET)
BillingAddress
object
ISO 3166-3 code
ISO 3166-2 code
PaymentMethod
object
required
Possible values: [Card
, SplititToken
]
Card
object
required
Possible values: [Mastercard
, Visa
, AmericanExpress
, Maestro
, JCB
, CUP
, UPI
, Discover
, Other
]
Possible values: [Credit
, Debit
, Charge
, Other
, Prepaid
, VisaDeferredDebit
, NetworkOnly
]
RedirectUrls
object
EventsEndpoints
object
Responses
- 200
- 401
- 403
- 404
- 422
- 500
- 400-503
- 400-504
- 400-505
- 400-510
- 400-511
- 400-520
- 400-521
- 400-522
- 400-524
- 400-526
- 400-528
- 400-529
- 400-532
- 400-540
- 400-542
- 400-543
- 400-544
- 400-550
- 400-551
- 400-554
- 400-566
- 400-567
- 400-568
- 400-569
- 400-570
- 400-571
- 400-572
- 400-573
- 400-574
- 400-575
- 400-578
- 400-580
- 400-594
- 400-595
- 400-596
- 400-599
- 400-600
- 400-601
- 400-602
- 400-603
- 400-606
- 400-607
- 400-608
- 400-609
- 400-610
- 400-630
- 400-640
- 400-641
- 400-643
- 400-644
- 400-806
- 400-1041
- 400-5041
- 400-5042
- 400-5421
- 400-5422
- 400-5801
- 400-5802
- 400-5911
- 400-5982
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Possible values: [InStore
, PhoneOrder
, ECommerce
]
How purchase was made (default is ECommerce
)
Possible values: [Initialized
, PendingCapture
, Active
, Cleared
, Canceled
]
ExtendedParams
object
Authorization
object
Possible values: [NA
, Succeeded
, Pending3DS
, Failed
]
ThreeDSRedirect
object
Params
object
Shopper
object
BillingAddress
object
ISO 3166 Country name OR 2-character code OR 3-character code
ISO 3166-2 State
PaymentMethod
object
Possible values: [Card
, SplititToken
]
Card
object
required
Possible values: [Mastercard
, Visa
, AmericanExpress
, Maestro
, JCB
, CUP
, UPI
, Discover
, Other
]
Possible values: [Credit
, Debit
, Charge
, Other
, Prepaid
, VisaDeferredDebit
, NetworkOnly
]
Installments
object[]
Possible values: [Pending
, Processed
, Canceled
]
Links
object
{
"InstallmentPlanNumber": "string",
"DateCreated": "2024-07-24T18:00:33.172Z",
"RefOrderNumber": "string",
"PurchaseMethod": "InStore",
"Status": "Initialized",
"Currency": "string",
"OriginalAmount": 0,
"Amount": 0,
"ExtendedParams": {},
"Authorization": {
"Status": "NA",
"Date": "2024-07-24T18:00:33.172Z",
"SplititErrorResultCode": "string",
"GatewayTransactionID": "string",
"GatewayResultCode": "string",
"GatewayResultMessage": "string",
"ThreeDSRedirect": {
"Url": "string",
"Verb": "string",
"Params": {}
},
"CAVV": "string",
"ECI": "string"
},
"Shopper": {
"FullName": "string",
"Email": "string",
"PhoneNumber": "string",
"Culture": "string"
},
"BillingAddress": {
"AddressLine": "string",
"AddressLine2": "string",
"City": "string",
"Country": "string",
"State": "string",
"Zip": "string"
},
"PaymentMethod": {
"Card": {
"CardHolderFullName": "string",
"CardNumber": "string",
"CardExpYear": "string",
"CardExpMonth": "string",
"CardCvv": "string",
"CardBrand": "Mastercard",
"CardType": "Credit"
},
"Token": "string"
},
"Installments": [
{
"InstallmentNumber": 0,
"Amount": 0,
"ProcessDateTime": "2024-07-24T18:00:33.172Z",
"Status": "Pending"
}
],
"Links": {
"Checkout": "string",
"LearnMore": "string",
"TermsConditions": "string",
"PrivacyPolicy": "string"
}
}
Unauthorized Request: Token is not authorized or is expired
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
Resource Does Not Exist: Plan or service does not exist; for all APIs, if an invalid plan number is passed in the URL, this error will be returned
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
General Server Error: Server encountered an unexpected condition
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidInstallmentPlanStatus: Please close this window. Then click 'Splitit Payment' to create your payment plan (you haven't been charged yet).
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidCCCardTypeNotSupported: Sorry, but we do not accept debit cards. We can only accept Visa and MasterCard credit cards at this time.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidNumberOfInstallments: The number of installments is not available at this store. Please check available options and try again. Thank you!
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidCardholderName: The cardholder name must include at least 3 characters. Please check and try again
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidAmount: Invalid amount sent, such as below your minimum amount or above your maximum amount.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidCVV: The CVV number must include at least 3 characters. Please check and try again.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidCardNumber: This credit card number is not valid. Please check your card and try again.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidExpirationDate: The entered expiration date is not a valid date. Please check your card and try again.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidEmailFormat: Invalid email. Please check that the email address is entered in the correct format. (For example: name@mail.com)
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidZIPCode: The ZIP code must include at least 3 characters. Please check and try again.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidCCIssueCountryNotSupportedByTerminal: We are sorry, but we currently do not accept cards issued by this country.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
CurrencyNotSupported: We are sorry, but we currently do not accept this currency.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
CountrySubdivisionNotSupported: Sorry, but Splitit is currently not available in your state. Please contact Splitit's customer service desk for help
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidExpirationDateFormat: Please enter the expiration date as MM/DD/YYYY.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidCCCardBrandNotSupported: Sorry but we do not accept this type of credit card. Please use [[SupportedCardBrands]] to complete your purchase.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
ApprovePlan_NoApprovalEvidence: Evidence of customer approval not provided.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
PlanWithTheSamePaymentDataAlreadyBeenCreatedLately: A similar purchase has been processed with this credit card. Please contact your merchant's customer support number for more information.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
CultureNameNotValid: Culture (language used in interfaces and communications) not valid.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
CultureNotSupported: Culture (language used in interfaces and communications) not supported.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
UnknownZipCode: The ZIP code you entered is not valid. Please try again.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
AddressDataIsMissingOrPartiallyInitiated: Please enter the cardholder's complete address.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
CardHolderNameIsMissing: Please enter the cardholder's name.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
CardNumberIsMissing: Please enter the full credit card number.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
CardExpirationMonthIsMissing: Please enter the credit card's expiration month.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
CardExpirationYearIsMissing: Please insert credit card's expiration year.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
NumberOfInstallmentNotDefined: Please select the number of installments for this purchase.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidStateCode: We were unable to find this state code.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
EmailsMissing: Please enter your email address.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
ConsumerFullNameIsMissing: Please enter your full name.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
CurrencyMustBeDefinedOnTransaction: Please select the currency you wish to use.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidPlanStrategy: We are sorry for the inconvenience, but this plan is not available.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidCcPrepaidCardNotSupported: We do not currently accept prepaid cards, but we do accept credit cards.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
FraudDetected: Sorry, but we were unable to process your payment. Please reach out to our customer support team at support@splitit.com.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
PhoneIsMissing: Please enter your phone number.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidPhoneFormat: Please enter your phone number in this format: +1-321-555-1234.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
General Error: Sorry. There has been an error. Please try again.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
GtwyResultGeneralError: Gateway was unable to process this request. Please try using a different card.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
GtwyResultCCDataAVSZip: The ZIP code you entered is not valid. Please try again.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
GtwyResultCCDataAVSAddress: The address does not match. Please check your card and try again.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
GtwyResultCCDataCVV: The CVV number does not match. Please check your card and try again.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
GtwyResultCCDataAVS: Address or zip/post code failed validation. Please try again.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
GtwyResultCCDataNumber: This credit card number is not valid. Please check your card and try again.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
GtwyResultCCDataGeneralProblem: Sorry, but your card was not able to be processed. Please try a different card.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
GtwyResultCCDataInsufficientFunds: Sorry, but there is not enough available credit on this card to cover the full amount of your purchase. Please try a different card.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
GtwyResultCCWasDeclined: Sorry, but your card was not accepted. Please try a different card.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
GtwyConnectivityProblem: Sorry, but there was an error processing your payment. Please try again.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
GtwyMerchantDataProblem: Sorry, but there has been a processing error with this merchant. Please contact our support for assistance.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
Gtwy3DSRequired: 3D secure verification is required.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
Gtwy3DAuthenticationFailed: 3DS authentication against the issuer failed.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
GtwyFraudDetected: Transaction was suspected to be fraudulent by the GW.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
TerminalApiKeyMissing: Terminal ID not found.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
IdempotencyHashMismatchError: Same Idempotency key with different payload identified.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidCCCardTypeNotSupportedMoreThanXInstallments: [[CardType]] cards support only up to [[MaxInstallmentsLimit]] installments. Please reduce the number of installments or provide payment details for a supported credit card.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidCCCardTypeNotSupportedMoreThanXAmount: [[CardType]] cards are only supported for purchases up to [[Currency]][[MaxPlanAmount]]. Please provide payment details for a credit card in order to support your total purchase amount.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidCCCardBrandNotSupportedMoreThanXInstallments: [[CardBrand]] cards are supported only up to [[MaxInstallmentsLimit]] installments. Please reduce the number of installments or provide payment details for a supported credit card.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidCCCardBrandNotSupportedMoreThanXAmount: [[CardBrand]] cards are only supported for purchases up to [[Currency]][[MaxPlanAmount]]. Please try a different card.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidCcPrepaidCardNotSupportedMoreThanXInstallments: [[CardType]] cards allow a maximum of [[MaxInstallmentsLimit]] installments. Please choose fewer installments or try a different credit card.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
InvalidCcPrepaidCardNotSupportedMoreThanXAmount: The maximum purchase for [[CardType]] cards is [[Currency]][[MaxPlanAmount]]. Please try a different card.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
PlanContextNotValidForAmount: Purchase is only supported for up to [[Currency]][[MaxPlanAmount]]. Please provide payment details for a credit card in order to support your total purchase amount.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}
PlanContextNotValidForAmount: Purchase is only supported for up to [[Currency]][[MaxPlanAmount]]. Please provide payment details for a credit card in order to support your total purchase amount.
- application/json
- Schema
- Example (from schema)
Schema
Error
object
ExtraData
object
{
"TraceId": "string",
"Error": {
"Code": "string",
"Message": "string",
"AdditionalInfo": "string",
"ExtraData": {}
}
}