Bill Payment
POST
/api/v0/paymentAPI to initiate the manual payment and payment to be done via checkout page
Request
Body Params application/json
paymentIds
array[string]
required
list of utility bill's ids
paymentType
enum<string>
required
Fix value: UTILITY
Allowed value:
UTILITY
Default:
UTILITY
paymentRemarks
string
optional
Optional remark
Example
{
"paymentIds": [
"string"
],
"paymentType": "UTILITY",
"paymentRemarks": "string"
}
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
response_code
integer
required
response_message
string
required
payload
string
optional
It will contain the checkout url for making payment
Example
{
"response_code": 1,
"response_message": "Failure",
"payload": "Url"
}
Last modified: 10 days ago