Get Biller Categories
Overview
Description: This endpoint retrieves a list of categories with their details and pagination support.
Endpoint: {base_url}/billit/categories
RESPONSE PARAMETER
| Parameter | Type | Description | Mandatory |
|---|---|---|---|
| categories | Array of Objects | List of category details | Yes |
| categories.catId | Integer | Unique identifier for the category | Yes |
| categories.categoryName | String | Name of the category | Yes |
| categories.description | String | Description of the category | No |
| categories.id | Integer | ID associated with the category | Yes |
| count | Integer | Number of categories returned | Yes |
| error | String | Error message if applicable | No |
| execTime | String | Execution time of the request | No |
| hasnext | Boolean | Indicates if there is a next page | Yes |
| hasprevious | Boolean | Indicates if there is a previous page | Yes |
| islast | Boolean | Indicates if this is the last page | Yes |
| limit | Integer | Maximum number of items per request | Yes |
| message | String | Additional message about the response | No |
| offset | Integer | Offset value for pagination | Yes |
| status | Integer | Status code of the response | Yes |
| total | Integer | Total number of categories available | Yes |
GET / https://{base_url}/billit/categories
{
"categories": [
{
"catId": 0,
"categoryName": "string",
"description": "string",
"id": 0
}
],
"count": 0,
"error": "string",
"execTime": "string",
"hasnext": true,
"hasprevious": true,
"islast": true,
"limit": 0,
"message": "string",
"offset": 0,
"status": 0,
"total": 0
}