Ncell API¶
Overview¶
The Ncell API endpoint allows you to perform a single-step transaction. This API requires a POST request and provides information about the success or failure of the transaction.
URL: {{base_url}}/api/use/ncell/
Type: Single Step API
Method: POST
Request Parameters¶
The following parameters are required in the POST request:
- number: 10-digit mobile number
- token: Authentication token
- reference: Unique reference for the transaction
- amount: Amount between 50 to 25000
Valid Amounts¶
- From 50 to 5000
Request Example¶
{
"token": "Token Provided",
"reference": "unique-reference",
"amount": "amount",
"number": "number(eg:9801234567)"
}
Success Response Format¶
{
"status": true,
"state": "Success",
"message": "Successfully Completed Transaction",
"extra_data": {},
"detail": "Transaction successful",
"credits_consumed": 1000,
"credits_available": 1e+24,
"id": 163
}