Skip to main content

Service cards with minimum amount

Get all service cards with minimum amount

The following routes are available for getting only active customer service card with minimum amount. The value that determines the minimum value of the card is taken from the table api_functions where FunctionName='RechargeValueLessThan'.

GET /api/v1/value-cards/low-amount

Url with params /api/v1/value-cards/low-amount?&user=user&password=password

  • tables: api_tickets
  • query:
    • user: string
    • password: string
  • body: none
  • response:
Get all service cards with minimum amount

{
"success": true,
"status": 0,
"data": [
{
"Barcode": "11",
"Amount": "0",
"AddressNr": "5408"
},
{
"Barcode": "551073372597490000",
"Amount": "0",
"AddressNr": "5278"
},
{
"Barcode": "551083482629220000",
"Amount": "20",
"AddressNr": "5244"
}
]
}