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

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

# AssignedCommissionLevelV2

A commission level assigned to the calling customer, with its product and carrier context.

## 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
```
