---
title: "AssignedCommissionLevelV2Page"
url: "https://developer.agentsync.io/apis/contracting-hierarchies-api/versions/40f58935-396e-4da4-8f47-1587041e1b16/schemas/AssignedCommissionLevelV2Page"
---

> Full API specification: https://developer.agentsync.io/apis/contracting-hierarchies-api/versions/40f58935-396e-4da4-8f47-1587041e1b16.md

# AssignedCommissionLevelV2Page

A token-paginated page of assigned commission levels (plain envelope, no HAL wrappers).

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: AgentSync Contracting & Hierarchies API
  version: v1.7.6
servers:
  - url: https://api.sandbox.agentsync.io/contracting
    description: Sandbox
  - url: https://api.agentsync.io/contracting
    description: Production
components:
  schemas:
    AssignedCommissionLevelV2:
      type: object
      description: A commission level assigned to the calling customer, with its
        product and carrier context.
      properties:
        id:
          type: string
          format: uuid
          description: Stable identifier for this assignment row.
        commissionLevelId:
          type: string
          format: uuid
        commissionLevelName:
          type: string
        type:
          type: string
          description: The commission level type.
          enum:
            - Percent
            - Dollar
            - Number
        firstYearValue:
          type: number
        level:
          type: number
        renewalPercentage:
          type: number
        renewalName:
          type: string
        productId:
          type: string
          format: uuid
        productName:
          type: string
        carrierOrganizationId:
          type: string
          format: uuid
        carrierOrganizationName:
          type: string
        active:
          type: boolean
          description: Whether the commission-level assignment is active.
        createdAt:
          type: string
          format: date-time
          description: RFC3339 UTC creation timestamp.
        updatedAt:
          type: string
          format: date-time
          description: RFC3339 UTC last-modified timestamp.
      required:
        - id
        - commissionLevelId
    PageInfo:
      type: object
      description: Pagination metadata for a V2 list response.
      properties:
        size:
          type: integer
          description: Number of items returned in this response (equal to items.length).
        nextToken:
          type:
            - string
            - "null"
          description: Opaque continuation token for the next page, or null on the last
            page.
      required:
        - size
        - nextToken
    AssignedCommissionLevelV2Page:
      type: object
      description: A token-paginated page of assigned commission levels (plain
        envelope, no HAL wrappers).
      properties:
        items:
          type: array
          items:
            $ref: "#/components/schemas/AssignedCommissionLevelV2"
        page:
          $ref: "#/components/schemas/PageInfo"
      required:
        - items
        - page
```
