Skip to main content

Get Biller Subcategories

Overview

Description: This endpoint retrieves a list of subcategories with their details and associated categories

Endpoint: {base_url}/subcategories

RESPONSE PARAMETER

ParameterTypeDescriptionMandatory
countIntegerNumber of subcategories 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
subcategoriesArray of ObjectsList of subcategory detailsYes
subcategories.catIdIntegerCategory ID associated with the subcategoryYes
subcategories.descriptionStringDescription of the subcategoryYes
subcategories.idIntegerUnique identifier for the subcategoryYes
subcategories.subCategoryIdIntegerUnique identifier for the subcategoryYes
subcategories.subCategoryNameStringName of the subcategoryYes
totalIntegerTotal number of subcategories availableYes
GET / https://{base_url}/subcategories
{
"count": 0,
"error": "string",
"execTime": "string",
"hasnext": true,
"hasprevious": true,
"islast": true,
"limit": 0,
"message": "string",
"offset": 0,
"status": 0,
"subcategories": [
{
"catId": 0,
"description": "string",
"id": 0,
"subCategoryId": 0,
"subCategoryName": "string"
}
],
"total": 0
}