List
List
GET EmailCustomization/List Request Params
| 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 customizations created from |
| ToDate | string | List customizations created upto |
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 |
Request Params
"EmailCustomization/List?Page=1&PageSize=10&FromDate=03/05/2025&ToDate=11/07/2025"
Response JSON
{
"CustomizationDetails": [
{
"CustomizationId": "c79327c2-0d3d-4510-83a7-0b78bb32d3c0",
"CustomizationNm": "Customization 01"
}
],
"Page": 1,
"PageSize": 01,
"TotalRecords": 01,
"TotalPages": 1,
"Errors": null
}