Approve Biller Ticket
After retrieving the list of pending biller approval requests, the L2 Business user can use this API to approve the biller.
Endpoint
Method: POST
URL: {{URL}}/PL/jsonrpc
Headers
Key | Type | Required | Description |
---|---|---|---|
Content-Type | string | Yes | application/json |
Request
{
"method": "BillpayConnectorService.ApproveBillerTicket",
"id": "1",
"params": {
"payload": {
"accountId": "528001",
"requestID": "54ba8d5f896542e0ac652de4cc7cc498"
},
"api": {
"credential": "Basic bS5rdW1hcisxQG5ldHhkLmNvbToyYjVlMDIzMDg1NjU0YTE3ODUwZWE0N2Q1NWFlNWViNA==",
"signature": "MEUCIQDW8WZP3E2wKyXZZVydkVO5c9iotcEDwU9PIPYbHYv+OgIgSdYUqJYqJi4TDtAl1Bx+MebtCDM0Ou/IGEnzPDUfnfg=",
"keyId": "231008"
}
}
}
Response: 200
Request Parameters
Parameter | Description |
---|---|
method Mandatory | String API method name Constant: billpayConnectorService.ApproveBillerTicket |
id Mandatory | String Unique request identifier |
accountId Mandatory | String Customer account ID |
requestID Mandatory | String Ticket request ID |
credential Mandatory | String API credential for authentication |
signature Mandatory | String Signature for request validation |
keyId Mandatory | String Key ID for authentication |
{
"id": "1",
"result": {
"status": "APPROVED",
"message": "Biller Added Successfully"
},
"jsonrpc": "2.0"
}