CSQ Docs
  1. Billpayment
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
      • Vouchers Purchase
      • Voucher Additional Data
      • Get Finished Vouchers
    • Supermarket vouchers
      • Supermarket Vouchers Purchase
  • Postpaid
    • Billpayment
      • Get Parameters
        GET
      • Get Invoices
        POST
      • Payment
        POST
  1. Billpayment

Payment

POST
/post-paid/bill-payment/payment/{terminalId}/{operatorId}/{localReference}
postpaid-bill-payment-controller

Request

Path Params
terminalId
integer <int32>
required
operatorId
integer <int32>
required
localReference
integer <int32>
required
Header Params
U
string 
required
Default:
{{U}}
SH
string 
required
Default:
{{SH}}
ST
string 
required
Default:
{{ST}}
Body Params application/json
amountToSendX100
integer <int32>
optional
destinationAmountX100
integer <int32>
optional
localDateTime
string <date-time>
optional
beneficiaryPhoneNumber
string 
optional
additionalData
array[object (AdditionalDataDto) {2}] 
optional
key
string 
optional
value
string 
optional
invoiceNumbers
array[string]
optional
Only for DISCRETE payment type
Example
{
  "amountToSendX100": 0,
  "destinationAmountX100": 0,
  "localDateTime": "2019-08-24T14:15:22Z",
  "beneficiaryPhoneNumber": "string",
  "additionalData": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "invoiceNumbers": [
    "string"
  ]
}

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 POST 'http://evsbus.csqworld.com/post-paid/bill-payment/payment///' \
--header 'U;' \
--header 'SH;' \
--header 'ST;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "amountToSendX100": 0,
    "destinationAmountX100": 0,
    "localDateTime": "2019-08-24T14:15:22Z",
    "beneficiaryPhoneNumber": "string",
    "additionalData": [
        {
            "key": "string",
            "value": "string"
        }
    ],
    "invoiceNumbers": [
        "string"
    ]
}'

Responses

🟢200OK
application/json
OK
Body
rc
integer <int32>
optional
items
array[object (SaleReceipt) {7}] 
optional
finalstatus
integer <int32>
optional
resultcode
string 
optional
resultmessage
string 
optional
supplierreference
string 
optional
suppliertoken
string  | null 
optional
destinationcurrency
string  | null 
optional
destinationamount
number  | null 
optional
Example
{
  "rc": 0,
  "items": [
    {
      "finalstatus": 0,
      "resultcode": "string",
      "resultmessage": "string",
      "supplierreference": "string",
      "suppliertoken": "string",
      "destinationcurrency": "string",
      "destinationamount": 0
    }
  ]
}
Previous
Get Invoices
Built with