Skip to main content

Give Bill Value

Overview

Description: endpoint processes transactions by validating, processing and applying a requested service or payment.

Endpoint: {base_url}/process

REQUEST PARAMETER

Request Parameters

#ParameterTypeDescriptionRequired?
1bundleIdIntegerUnique identifier for the bundleYes
2parametersArray of ObjectsList of parameters containing name-value pairsNo
3parameters.nameStringName of the parameterYes (if parameters is provided)
4parameters.valueStringValue of the parameterYes (if parameters is provided)
5pinStringUser's PIN for authenticationYes
6serviceIdStringUnique identifier for the serviceYes
7sessionidStringUnique session identifierYes
8terminalIdStringUnique identifier for the terminalYes

Request Parameters

POST {base_url}/process
curl `${base_url}/process`
-H "Content-type: application/json"
-X POST
-d '{
"bundleId": 0,
"parameters": [
{
"name": "string",
"value": "string"
}
],
"pin": "string",
"serviceId": "string",
"sessionid": "string",
"terminalId": "string"
}
'