---
title: "CallEntryWriteContractRequest"
url: "https://developers.zinnia.com/apis/orion-api/versions/716288b7-e96e-41a7-abc5-63925410717a/schemas/CallEntryWriteContractRequest"
---

> Full API specification: https://developers.zinnia.com/apis/orion-api/versions/716288b7-e96e-41a7-abc5-63925410717a.md

# CallEntryWriteContractRequest

## OpenAPI definition

```yaml
openapi: 3.0.4
info:
  title: Orion Call Center API
  version: v1
servers:
  - url: https://qa.api.zinnia.io
components:
  schemas:
    CallEntryWriteContractRequest:
      required:
        - contractNumber
      type: object
      properties:
        contractNumber:
          maxLength: 50
          minLength: 1
          pattern: ^[A-Za-z0-9,-]+$
          type: string
          description: Trimmed contract number, unique case-insensitively within the
            request.
        callTypes:
          type: array
          items:
            maxLength: 50
            minLength: 1
            pattern: ^[A-Za-z0-9 &'/-]+$
            type: string
          description: Explicit active call-type names. Duplicate canonical values within
            a contract are rejected.
          nullable: true
      additionalProperties: false
```
