v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
UPI

Get card bill

Return card bill details

post/v1/cards/credit-card-bill

Headers

Authorizationstring required
Example:Bearer eyJhbGci...IUzUx

Account token - an access token encoded with a Pismo account ID. Tokens can expire quickly, which can result in a <b>401 Unauthorized</b> message.

user-agentstring required

Client consuming API.

Request body

Example request

{
  "card_info": {
    "account_reference_number": "789012000087442038",
    "last_4_digit": "2432"
  },
  "phone": {
    "country_code": "91",
    "phone": "9592714958"
  }
}

Response

Response Body

total_due_amountnumber required

Total due amount

minimum_due_amountnumber required

Minimum due amount

due_datestring required

Bill due date

card_masked_numberstring required

Card masked number

account_reference_numberstring required

Card account reference number

Example response

{
  "total_due_amount": 500,
  "minimum_due_amount": 500,
  "due_date": "23012025",
  "card_masked_number": "123456XXXXXXXX78",
  "account_reference_number": "789012000087442038"
}