Skip to main content
Version: 1.7.3

List

List

This endpoint provides a list of all the secure URL customizations you’ve created in the TaxBandits API.

GET PortalCustomization/List 

Request Body

FieldTypeDescription
PageintThe customization details from the specified page number
PageSizeintNumber of customizations to be listed on each page
Note: PageSize can be a maximum of 100
FromDatestringThe customizations created from the specified date
ToDatestringThe customizations created up to the specified date

Response Body

FieldTypeDescription
CustomizationDetailsobject[]Details of the portal customization
CustomizationIdGuidA unique customization identifier generated by TaxBandits
CustomizationNmstringA unique customization name generated by TaxBandits
PagenumberRequested page number
TotalRecordsnumberTotal number of records returned in the response
TotalPagesnumberTotal number of pages with the records
PageSizenumberRequested Page Size.
Errorsobject[]Details about any errors occurred
    IdstringThe unique error ID assigned by TaxBandits for each error
    NamestringName of the node where the error occurred
    MessagestringDisplays the error message

Request JSON

"PortalCustomization/List?Page=1&PageSize=10&FromDate=03/05/2025&ToDate=11/07/2025"

Response JSON

{
"CustomizationDetails": [
{
"CustomizationId": "94fd3f4e-69f5-40a9-bc27-a31d2364a1c4",
"CustomizationNm": "Customization 01"
}
],
"Page": 1,
"PageSize": 01,
"TotalRecords": 01,
"TotalPages": 1,
"Errors": null
}