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
| Field | Type | Description |
|---|---|---|
| Page | int | The customization details from the specified page number |
| PageSize | int | Number of customizations to be listed on each page Note: PageSize can be a maximum of 100 |
| FromDate | string | The customizations created from the specified date |
| ToDate | string | The customizations created up to the specified date |
Response Body
| Field | Type | Description |
|---|---|---|
| CustomizationDetails | object[] | Details of the portal customization |
| CustomizationId | Guid | A unique customization identifier generated by TaxBandits |
| CustomizationNm | string | A unique customization name generated by TaxBandits |
| Page | number | Requested page number |
| TotalRecords | number | Total number of records returned in the response |
| TotalPages | number | Total number of pages with the records |
| PageSize | number | Requested Page Size. |
| Errors | object[] | Details about any errors occurred |
| Id | string | The unique error ID assigned by TaxBandits for each error |
| Name | string | Name of the node where the error occurred |
| Message | string | Displays 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
}