Authorize | With Installments

Authorize Request

The code below is a sample request to authorize payments for installments in which issuer_identification_number is the card BIN number. It helps to identify if installments can be shown to a customer for the card being used for payment.

<?xml version="1.0" encoding="UTF-8"?>
<root>
    <authorize-payment account="101012" client-id="10101">
        <transaction type-id="10091" id="5297672" store-card="false">
            <card type-id="7">
                <amount country-id="405" currency-id="170">201000000</amount>
                <cvc>123</cvc>
                <card-holder-name>Chris Harris</card-holder-name>
                <card-number>5544330000000011</card-number>
                <expiry>10/23</expiry>
                <address country-id="405">
                    <first-name>Rohan</first-name>
                    <last-name>Deo</last-name>
                    <street>141/2 Andul test</street>
                    <postal-code>711103</postal-code>
                    <city>Kolkata</city>
                    <state>Maharastra</state>
                    <contact-details>
                        <mobile operator-id="64000" country-id="640">9898989898</mobile>
                        <email>[email protected]</email>
                    </contact-details>
                </address>
            </card>
            <installment>
                <value>5</value>
            </installment>
            <hmac>b7276562910d3de13562bd827547996b92b46d7bd8ce45b60930ede9cfb1a04f29f6a9a89d938c7b9a914b1eff8df2a2998eb5805eb082db98387baa31c7a530</hmac>
        </transaction>
        <client-info language="en" sdk-version="2.0.0" version="2.0.0" platform="HTML5" profileid="">
            <mobile operator-id="40500" country-id="405">9377178759</mobile>
            <email>[email protected]</email>
            <customer-ref>[email protected]</customer-ref>
            <device-id>2E8667F78B23402BBFF6176313BD58D314566333</device-id>
        </client-info>
    </authorize-payment>
</root>

Authorize Response

Refer to Authorize Response.