Scheme Validation: Single Cart Model

This API Help to set Scheme Validation: Single Cart Model

Request Parameters:

AttributeTypeDetails
merchant_id*integermerchant_id is the unique identifier of the merchant. This id is assigned to you by Plural. You can find merchant_id under the credentials section of the settings section of Plural Console dashboard.
amount_in_paisa*longAmount is paise.
card_number*stringvaild Card numbder.
scheme_id*stringScheme id is the offer identifier availability of which on the card is to be checked.
program_type*stringprogram_type.
is_scheme_valid*booleanvaild check on the schema.
product_code*stringProduct code is the unique identifier of the product.
product_name*stringProduct name
product_amount*longProduct amount in paise.
subvention_cashback
_discount
stringSubvention discount cashback amount in paise. Only applicable when subvention is present.
product_discountstringProduct discount amount in paise. Only applicable if product discount is present.
subvention_cashback
_discount_percentage
longSubvention discount cashback percentage. Its value is percentage multiplied by 10000.
product_discount
_percentage
longProduct discount cashback percentage. Its value is percentage multiplied by 10000.
subvention_type*intType of subvention applied on the scheme. "1" for No cost EMI, "2" for Low cost EMI and "3" for Standard EMI
bankinterest
rate_percentage
longBank interest amount in paise.
bank_interest_ratestringBank interest rate in percentage multiplied by 10000.
emi_schemestringvalid emi scheme.
tenure_id*stringvalid tenure id.
tenure_in_month*stringvalid tenure in month.
monthly_installment*stringvaild monthly installment.
bank_interest_rate*stringvaild bank interest rate.
interestpay
to_bank*
stringvalid interest pay to bank.
total_offerred_discount
_cashback_amount*
stringvaild cash back amount.
loan_amount*stringvaild loan amount.
auth_amount*stringvaild auth amount.
acquirerId*stringvaild acquire id.

Request Body payload:

{
    "merchant_data": {
        "merchant_id": 11565
    },
    "payment_data": {
        "amount_in_paisa": 1000000
    },
    "card_data": {
        "card_number": "4012001037141112"
    },
    "emi_data": {
        "offer_scheme": {
            "product_details": [
                {
                    "schemes": [
                        {
                            "scheme_id": "47049",
                            "program_type": 106,
                            "is_scheme_valid": true
                        }
                    ],
                    "product_code": "testproduct01",
                    "product_name": "testproduct01",
                    "product_amount": 1000000,
                    "subvention_cashback_discount": 24500,
                    "product_discount": 0,
                    "subvention_cashback_discount_percentage": 24500,
                    "product_discount_percentage": 0,
                    "subvention_type": 1,
                    "additional_cashback": "Rs1000 Additional Cashback",
                    "bank_interest_rate_percentage": 150000,
                    "bank_interest_rate": 24487
                }
            ],
            "emi_scheme": null
        },
        "tenure_id": "3",
        "tenure_in_month": "3",
        "monthly_installment": 333329,
        "bank_interest_rate": 150000,
        "interest_pay_to_bank": 24487,
        "total_offerred_discount_cashback_amount": 24500,
        "loan_amount": 975500,
        "auth_amount": 975500
    },
    "acquirer_data": {
        "acquirerId": 8004
    }
}

Response Payload:

{
"response_code": 1,
"response_message": "SUCCESS"
}
{
  "response_code": 14845,
  "response_message": "Request Data is not valid"
}

{
  "response_code": 14826,
  "response_message": "Offer is not applicable on card"
}

{
  "response_code": 14819,
  "response_message": "Offer is outdated"
}
{
  "error_code": "14020",
  "error_message": "Oops, something went wrong!"
}
Language
Authorization
Basic
base64
:
Click Try It! to start a request and see the response here!