interface GetIssuesInQueue {
    limit?: number;
    queueId: number;
    serviceDeskId: string;
    start?: number;
}

Properties

limit?: number

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

queueId: number

The ID of the queue whose customer requests will be returned.

serviceDeskId: string

The ID of the service desk containing the queue to be queried. 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.