List
GET PortalCustomization/List
Request Body
Field | Type | Description |
---|---|---|
Page | int | Selected page number to be listed. |
PageSize | int | Number of customizations to be listed in each page. Note: PageSize can be maximum of 100. |
FromDate | string | List custmizations created from |
ToDate | string | List customizations created upto |
Request JSON
"PortalCustomization/List?Page=1&PageSize=10&FromDate=03/05/2020&ToDate=11/07/2024"
Response Body
Field | Type | Description |
---|---|---|
CustomizationDetails | object[] | Customization Details of all the business |
CustomizationId | Guid | unique identifier of the customization |
CustomizationNm | Name | Name of the customization. |
Page | number | Requested Page Number. |
TotalRecords | number | Total number of records returned in the response. |
TotalPages | number | Number of pages with the records. |
PageSize | number | Requested Page Size. |
Errors | object[] | Collection of errors for the customization |
Id | string | Error ID number. This ID is assigned by TaxBandits and it is unique for each error. |
Name | string | Name of the errored node. |
Message | string | Shows 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
}