Skip to main content
Version: 1.7.3

List

GET PortalCustomization/List 
Run in Postman

Request Body

FieldTypeDescription
PageintSelected page number to be listed.
PageSizeintNumber of customizations to be listed in each page.
Note: PageSize can be maximum of 100.
FromDatestringList custmizations created from
ToDatestringList customizations created upto

Request JSON

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

Response Body

FieldTypeDescription
CustomizationDetailsobject[]Customization Details of all the business
CustomizationIdGuidunique identifier of the customization
CustomizationNmNameName of the customization.
PagenumberRequested Page Number.
TotalRecordsnumberTotal number of records returned in the response.
TotalPagesnumberNumber of pages with the records.
PageSizenumberRequested Page Size.
Errorsobject[]Collection of errors for the customization
    IdstringError ID number. This ID is assigned by TaxBandits and it is unique for each error.
    NamestringName of the errored node.
    MessagestringShows the error message

Response JSON

{
"CustomizationDetails": [
{
"CustomizationId": "9ea4bafc-1ef5-47b2-9409-b5e8693da9e5",
"CustomizationNm": "Customization 8"
},
{
"CustomizationId": "e718abff-9c9b-4cac-a1b7-4eb60c275286",
"CustomizationNm": "Customization 7"
},
{
"CustomizationId": "a44fb0d7-e551-4226-8b85-7e122f165515",
"CustomizationNm": "Customization 6"
},
{
"CustomizationId": "5a41c389-3782-4a20-a44f-ca2e0946d9ce",
"CustomizationNm": "Customization 5"
},
{
"CustomizationId": "ff246934-a798-4e05-8a30-576a21d742a7",
"CustomizationNm": "Customization 4"
},
{
"CustomizationId": "3cc0f6f5-0fd0-4f46-89e2-63535b355273",
"CustomizationNm": "Customization 3"
},
{
"CustomizationId": "9ac0e326-929a-477d-aa53-1337c07e7028",
"CustomizationNm": "Customization 2"
},
{
"CustomizationId": "064afb10-185a-4d3b-b41f-d2fcf0d0a62e",
"CustomizationNm": "Customization 1"
}
],
"Page": 1,
"PageSize": 100,
"TotalRecords": 8,
"TotalPages": 1,
"Errors": null
}