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

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

# LabelConfigResponse

## 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:
    LabelConfigModel:
      type: object
      properties:
        key:
          type: string
          description: Unique key for the label
          example: process
        value:
          type: string
          description: Value associated with the label
          example: LOAN PAYMENT
        displayValue:
          type: string
          description: Display value of the label
          example: ONE-TIME LOAN PAYMENT
      required:
        - key
        - value
        - displayValue
    LabelConfigResponse:
      type: object
      properties:
        labelconfigs:
          type: array
          items:
            $ref: "#/components/schemas/LabelConfigModel"
```
