---
title: "ZinniaIllustrationResponse"
url: "https://developers.zinnia.com/apis/new-business/versions/b8532e16-b28e-4393-9305-def50b91e40e/schemas/ZinniaIllustrationResponse"
---

> Full API specification: https://developers.zinnia.com/apis/new-business/versions/b8532e16-b28e-4393-9305-def50b91e40e.md

# ZinniaIllustrationResponse

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Zinnia New Business API.
  version: 0.9.8
servers:
  - url: https://qa.api.zinnia.io
    description: QA Environment
  - url: https://dev.api.zinnia.io
    description: DEV Environment
  - url: https://uat.api.zinnia.io
    description: UAT Environment
  - url: https://api.zinnia.io
    description: PROD Environment
components:
  schemas:
    CustomIdentifier:
      type: object
      properties:
        key:
          type: string
          description: Custom identifier key
          example: ApexQuoteId
        value:
          type: string
          description: The value associated with the key
          example: "12345"
    ZinniaIllustrationResponse:
      type: object
      properties:
        source:
          type: string
          description: Illustration Source
          enum:
            - ZINNIA
          default: ZINNIA
          example: ZINNIA
        illustrationId:
          type: string
          description: Unique identifier for the illustration
          example: Q12345
        customIdentifiers:
          type: array
          items:
            $ref: "#/components/schemas/CustomIdentifier"
```
