Get clients
Query parameters
The maximum number of items.
Offset relative to the beginning of list.
The parameter using for sorting data.
Default sort order is ascending. Put - before value for descending sort order: -id.
For sorting by multiple parameters write them as comma separated string: id,-status.
- id sort by client's ID.
- email sort by client's email.
- name sort by client's name.
- status sort by client's status.
- companyName sort by client's company name.
- created_at sort by client's created datetime.
Use comma separated string for multiple-field sorting.
Filter byemail address.
Filter by client's company name.
Filter by client's name.
Filter by status of deletion:
- true — only deleted;
- false — only non-deleted clients;
- other value — return all.
Filter by reseller ID.
Filter by seller ID.
Filter by client's custom ID.
Status of the service.
Filter by CDN service status.
Status of the service.
Filter by Storage service status.
Status of the service.
Filter by DDOS service status.
Status of the service.
Filter by DNS service status.
Status of the service.
Filter by CLOUD service status.
Status of the service.
Filter by Infrastructure Protection service status.
Status of the service.
Filter by Connect service status.
Filter by allowed traffic volume (GB).
Filter by allowed traffic volume (GB).
Filter by name of secondary hostnames.
Filter by status of activation:
- true - activated;
- false - non-activated.
Exclude clients with these IDs.
Use comma separated string for multiple values.
Filter by bill type.
Filter by users name.
Filter by users email.
Filter all client's that created after this date.
Filter all client's that created before this date.
Filter by feature ids.
Filter test clients:
- true - only test clients;
- false - only non-test clients.
Filter by client's type.
Filter clients with enabled personal availability on specific products.
Use comma separated string for multiple values.
Filter by promocode.
Filter by country (ISO 3166-1 alpha-2 format).
null - to get clients without country code.
Response
OK.
Example response
[
{
"users": [
{
"groups": [
{
"id": 1,
"name": "Administrators"
}
]
}
],
"paidFeatures": {
"CDN": [
{
"feature_id": 1,
"name": "paid feature name",
"service": "CDN"
}
],
"STREAMING": [
{
"feature_id": 2,
"name": "another paid feature name",
"service": "STREAMING"
}
]
},
"freeFeatures": {
"CDN": [
{
"feature_id": 1,
"name": "free feature name",
"service": "CDN"
}
],
"STREAMING": [
{
"feature_id": 2,
"name": "another free feature name",
"service": "STREAMING"
}
]
}
}
]