BBPS Category
Authentication
Basic Authentication
- Username: Client Id
- Password: Secret Key
Example Authorization Header:
Authorization: Basic eGV0dGxlXzgzMjg2NjU5YmRmNzBkZWEzMDUwMzcwNzE1MTYwMzA0MDo3YzE1ZDQyYTZhYjEyOTYzYWI4NzJhMzFkOTk4MDk1ZDMwNTAzNzA3MTUxNjMyMDg5
Request Body
{}
Request Examples
Request Examples
- Curl
- JavaScript
- C#
- Java
- Python
curl --location --request POST 'https://xyz.com/v1/service/bbps/category' --header 'Content-Type: application/json' --header 'Authorization: Basic eGV0dGxlXzU1NDlhYmQwYzJmNjdiOGUyMjM4Mjg5MTExMDc3MTExMjpjYjYyNzZlZTUwNGE1NzUzNDJlOTRlNmIwZjQ4MmQ0MTIyMzgyODkxMTEwNzc3NjM2' --data ''
const axios = require('axios');
let data = '';
let config = {
method: 'post',
maxBodyLength: Infinity,
url: 'https://xyz.com/v1/service/bbps/category',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Basic eGV0dGxlXzU1NDlhYmQwYzJmNjdiOGUyMjM4Mjg5MTExMDc3MTExMjpjYjYyNzZlZTUwNGE1NzUzNDJlOTRlNmIwZjQ4MmQ0MTIyMzgyODkxMTEwNzc3NjM2'
},
data : data
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
var options = new RestClientOptions("https://xyz.com")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/v1/service/bbps/category", Method.Post);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "Basic eGV0dGxlXzU1NDlhYmQwYzJmNjdiOGUyMjM4Mjg5MTExMDc3MTExMjpjYjYyNzZlZTUwNGE1NzUzNDJlOTRlNmIwZjQ4MmQ0MTIyMzgyODkxMTEwNzc3NjM2");
var body = @"";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "");
Request request = new Request.Builder()
.url("https://xyz.com/v1/service/bbps/category")
.method("POST", body)
.addHeader("Content-Type", "application/json")
.addHeader("Authorization", "Basic eGV0dGxlXzU1NDlhYmQwYzJmNjdiOGUyMjM4Mjg5MTExMDc3MTExMjpjYjYyNzZlZTUwNGE1NzUzNDJlOTRlNmIwZjQ4MmQ0MTIyMzgyODkxMTEwNzc3NjM2")
.build();
Response response = client.newCall(request).execute();
import requests
import json
url = "https://xyz.com/v1/service/bbps/category"
payload = ""
headers = {
'Content-Type': 'application/json',
'Authorization': 'Basic eGV0dGxlXzU1NDlhYmQwYzJmNjdiOGUyMjM4Mjg5MTExMDc3MTExMjpjYjYyNzZlZTUwNGE1NzUzNDJlOTRlNmIwZjQ4MmQ0MTIyMzgyODkxMTEwNzc3NjM2'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
Response Examples
- Success
- Failed
{
"status": true,
"message": "BBPS Category values fetched successfully",
"data": [
"loan_repayment",
"broadband_postpaid",
"education_fees",
"housing_society",
"hospital",
"municipal_taxes",
"clubs_associations",
"subscription_fees",
"insurance",
"gas",
"dth",
"ncmc_recharge",
"subscription",
"fastag",
"donation",
"cable_tv",
"recurring_deposit",
"electricity",
"hospital_pathology",
"landline_postpaid",
"mobile_postpaid",
"credit_card",
"prepaid_meter",
"rental",
"lpg_gas",
"municipal_services",
"mobile_prepaid",
"water",
"national_pension_system"
]
}
{
"code": "0x0201",
"message": "Unauthorized IP used.",
"status": "FAILURE",
"ip": "152.58.32.60"
}
Response Codes
The API uses the following response codes to indicate the status of requests:
| Code | Description | Meaning |
|---|---|---|
0x0200 | SUCCESS | The request was processed successfully. |
0x0201 | UNAUTHORIZED | Authentication failed or insufficient permissions. |
0x0202 | FAILED | The request processing failed for a reason other than those specifically identified. |
0x0203 | MISSING_PARAMETER | The request is missing one or more required parameters. |
0x0206 | PENDING | The request has been received and is being processed, but processing has not yet completed. |
0x0205 | SOMETHING_WENT_WRONG | A server error occurred during processing of the request. |