POSTInstallments Information Inquiry

Query the installment information of the payments to be made with the API.

Service Address:/installmentinfo

Request

Header
Parameter Name Parameter Type Description
ApiKey

Required

string It is the ApiKey information given by Teqpay of the dealer who will make the payment.

For Example ; 3f0126be-****-****-****-06025352594a

SecretKey

Required

string It is the key information given by Teqpay of the dealer who will make the payment.

For Example ; 3f0126be-****-****-****-06025352594a

Body Parameter
Parameter Name Parameter Type Description
cardNo

Required

string Credit card number. Make sure the card number is between 6 and 16 characters.
price

Required

decimal The amount
Language

Opsiyonal

string Values it can take "TR"-EN".The default language is "TR".

Request Sample
    {
    "cardNo": "52691",
    "language": "",
    "price": "1.00"
    }

Response

Response Parameter
Parameter Name Parameter Type Description
Result boolen Process Result
ResultCode integer Teqpay result code of the payment transaction
ResultMessage string Description of ResultCode value.
Details List<class> The details of the internal parameters are explained in the table below.

Details Parameter
Parameter Name Parameter Type Description
Installment string Installment information
Price string The amount
TotalPrice Decimal Total amount information.
ProcessingFee Decimal Dealer transaction amount
CommissionType string Commission Type
MerchantSaleRate string Dealer discount rate
AmountToPaid string Amount to paid information

Response Sample
    {
    "Details": [{
        "Installment": "1",
        "Price": "500,00",
        "TotalPrice": "500,00",
        "ProcessingFee": "0,00",
        "CommissionType": "Komisyon İçinde",
        "MerchantSaleRate": "2,00",
        "AmountToPaid": "500,00",
    },
    ...
    {
        "Installment": "12",
        "Price": "500,00",
        "TotalPrice": "500,00",
        "ProcessingFee": "0,00",
        "CommissionType": "Komisyon İçinde",
        "MerchantSaleRate": "16,75",
        "AmountToPaid": "41,67",
    }
    ],
    "Result": true,
    "ResultCode": 10000,
    "ResultMessage": "Başarıyla tamamlandı.",
}