CSQ Docs
  1. Vouchers
CSQ Docs
eVSB
  • eVSB
  • Overview
  • Headers
  • Methods
  • Error Codes
  • Test connection
    • ping echo
      GET
    • ping
      GET
  • Utils
    • Balances
      GET
    • Prices Direct
      GET
    • Prices Reverse
      GET
  • Prepaid
    • Recharge
      • Get Products
      • Purchase
    • Vouchers
      • Get Products
        GET
      • Vouchers Purchase
        POST
      • Voucher Additional Data
        GET
      • Get Finished Vouchers
        GET
    • Supermarket vouchers
      • Supermarket Vouchers Purchase
  • Postpaid
    • Billpayment
      • Get Parameters
      • Get Invoices
      • Payment
  1. Vouchers

Get Products

GET
/pre-paid/vouchers/products/{terminalId}/{operatorId}/{account}
prepaid-vouchers-controller

Request

Path Params
terminalId
integer <int32>
required
operatorId
integer <int32>
required
account
string 
required
Header Params
U
string 
required
Default:
{{U}}
SH
string 
required
Default:
{{SH}}
ST
string 
required
Default:
{{ST}}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://evsbus.csqworld.com/pre-paid/vouchers/products///' \
--header 'U;' \
--header 'SH;' \
--header 'ST;'

Responses

🟢200OK
application/json
Body
rc
integer <int32>
optional
items
array[object (DynamicProductDto) {8}] 
optional
amountToSendX100
integer <int32>
optional
destinationAmountX100
integer <int32>
optional
serviceFeeX100
integer <int32>
optional
totalAmountX100
integer <int32>
optional
destinationCurrency
string 
optional
id
string 
optional
description
string 
optional
additionalData
array[object (AdditionalDataDto) {2}] 
optional
additionalData
array[object (AdditionalDataDto) {2}] 
optional
key
string 
optional
value
string 
optional
Example
{
  "rc": 0,
  "items": [
    {
      "amountToSendX100": 0,
      "destinationAmountX100": 0,
      "serviceFeeX100": 0,
      "totalAmountX100": 0,
      "destinationCurrency": "string",
      "id": "string",
      "description": "string",
      "additionalData": [
        {
          "key": "string",
          "value": "string"
        }
      ]
    }
  ],
  "additionalData": [
    {
      "key": "string",
      "value": "string"
    }
  ]
}
Previous
Vouchers
Next
Vouchers Purchase
Built with