---
title: "PageQueueResponse"
url: "https://developers.zinnia.com/apis/case-management-1-0-0/versions/0091226b-6452-4e75-93ce-4bbfe022aad5/schemas/PageQueueResponse"
---

> Full API specification: https://developers.zinnia.com/apis/case-management-1-0-0/versions/0091226b-6452-4e75-93ce-4bbfe022aad5.md

# PageQueueResponse

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Case Management API
  version: 1.0.0
servers:
  - url: https://dev.api.zinnia.io/
    description: Dev Environment
  - url: https://qa.api.zinnia.io/
    description: QA Environment
  - url: https://uat.api.zinnia.io/
    description: UAT Environment
  - url: https://api.zinnia.io/
    description: PROD Environment
components:
  schemas:
    QueueResponse:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the queue instance
          example: REDEMPTION_QUEUE
        name:
          type: string
          description: Name of the queue instance
          example: Suitability Queue
        description:
          type: string
          description: Description of the queue instance
          example: Description
        taskType:
          type: string
          description: Type of task associated with the queue
          example: Suitability Review
        process:
          type: string
          description: Process associated with the queue
          example: New Business
        carrier:
          type: string
          description: Carrier associated with the queue
          example: Carrier_1
        createdAt:
          type: string
          format: date-time
          description: Date and time when the queue instance was created
          example: 2024-09-17T10:00:00Z
        updatedAt:
          type: string
          format: date-time
          description: Date and time when the queue instance was last updated
          example: 2024-09-17T12:00:00Z
        createdBy:
          type: string
          description: User who created the queue instance
          example: username@se2.com
        updatedBy:
          type: string
          description: User who last updated the queue instance
          example: username@se2.com
        deleted:
          type: boolean
          description: Indicates whether the queue instance has been deleted
          example: false
    PageQueueResponse:
      type: object
      properties:
        content:
          type: array
          items:
            $ref: "#/components/schemas/QueueResponse"
        pageable:
          type: object
          properties:
            pageNumber:
              type: integer
            pageSize:
              type: integer
            sort:
              type: object
              properties:
                sorted:
                  type: boolean
                unsorted:
                  type: boolean
                empty:
                  type: boolean
            totalPages:
              type: integer
            totalElements:
              type: integer
            numberOfElements:
              type: integer
        totalElements:
          type: integer
        last:
          type: boolean
        number:
          type: integer
        size:
          type: integer
        sort:
          type: object
        first:
          type: boolean
        empty:
          type: boolean
```
