CsvExportFilterDto
Filter criteria for selecting which clients to export.
Matches the same filters available on the client list endpoint.
Properties
| Name | Type | Description |
|---|---|---|
| managerCodes | array of string | Filter clients by their assigned manager's code(s). |
Filter clients by their assigned manager's code(s). | ||
| partnerCodes | array of string | Filter clients by their assigned partner's code(s). |
Filter clients by their assigned partner's code(s). | ||
| associateCodes | array of string | Filter clients by their assigned associate's code(s). |
Filter clients by their assigned associate's code(s). | ||
| statuses | array of enum | Filter clients by status(es). |
Filter clients by status(es). | ||
| types | array of enum | Filter clients by their organization type(s). |
Filter clients by their organization type(s). | ||
| serviceCodes | array of string | Filter clients by billable service code(s) they have assigned. |
Filter clients by billable service code(s) they have assigned. | ||
| search | string | Search across client code, name and internal reference. |
Search across client code, name and internal reference. | ||
JSON Example
{
"managerCodes": [
"string"
],
"partnerCodes": [
"string"
],
"associateCodes": [
"string"
],
"statuses": [
"Active"
],
"types": [
"PrivateLimitedCompany"
]
}