interface GetCustomers {
    limit?: number;
    query?: string;
    serviceDeskId: string;
    start?: number;
}

Properties

limit?: number

The maximum number of users to return per page. Default: 50. See the Pagination section for more details.

query?: string

The string used to filter the customer list.

serviceDeskId: string

The ID of the service desk the customer list should be returned from. This can alternatively be a project identifier.

start?: number

The starting index of the returned objects. Base index: 0. See the Pagination section for more details.