Credit Card Bin Query / Installment
Developing
Request
Send your HTTP requests with an Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password Example:Authorization: Basic *****************
Body Params application/json
{
"bin": "52845600",
"total": 1200
}
Request Code Samples
curl --location 'http://pay.tripingram.local/query/bin' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"bin": "52845600",
"total": 1200
}'
Responses
application/json
{
"data": [
{
"installment": "direct_rate_others",
"real_installment": 1,
"bin": "52845600",
"amount": 1200,
"margin": 0,
"amount_per_installment": 1200,
"total": 1200,
"bank_name": null,
"card_logo": null,
"card_family": null
}
],
"success": true,
"code": 0,
"message": ""
}
Modified at 2024-01-30 03:12:17