Skip to main content

Get Biller Categories

Overview

Description: This endpoint retrieves a list of categories with their details and pagination support.

Endpoint: {base_url}/categories

RESPONSE PARAMETER

ParameterTypeDescriptionMandatory
categoriesArray of ObjectsList of category detailsYes
categories.catIdIntegerUnique identifier for the categoryYes
categories.categoryNameStringName of the categoryYes
categories.descriptionStringDescription of the categoryNo
categories.idIntegerID associated with the categoryYes
countIntegerNumber of categories returnedYes
errorStringError message if applicableNo
execTimeStringExecution time of the requestNo
hasnextBooleanIndicates if there is a next pageYes
haspreviousBooleanIndicates if there is a previous pageYes
islastBooleanIndicates if this is the last pageYes
limitIntegerMaximum number of items per requestYes
messageStringAdditional message about the responseNo
offsetIntegerOffset value for paginationYes
statusIntegerStatus code of the responseYes
totalIntegerTotal number of categories availableYes
GET / https://{base_url}/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
}