> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gomobile.ma/llms.txt
> Use this file to discover all available pages before exploring further.

# Add an entry to a dictionary



## OpenAPI

````yaml /openapi.json post /api/dictionaries/{dictionaryId}/entries
openapi: 3.0.0
info:
  title: GoMobile Backend API
  description: >-
    API documentation for GoMobile telephony platform - automated calling
    campaigns, interactive voice flows, and call management
  version: '1.0'
  contact: {}
servers:
  - url: http://localhost:3000
    description: Local Development
security: []
tags:
  - name: Organizations
    description: Multi-tenant organization management
  - name: Teams
    description: Team structure and hierarchy
  - name: Contacts
    description: Customer contact management (CRM)
  - name: Entities
    description: Business entities management
  - name: Audiences
    description: Contact segmentation and groups
  - name: Programs
    description: Call campaign configuration
  - name: Call Flows
    description: Interactive call flow builder
paths:
  /api/dictionaries/{dictionaryId}/entries:
    post:
      tags:
        - Dictionaries
      summary: Add an entry to a dictionary
      operationId: DictionaryController_addEntry
      parameters:
        - name: dictionaryId
          required: true
          in: path
          description: Dictionary UUID
          schema:
            type: string
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/AddEntryDto'
      responses:
        '201':
          description: Entry added successfully
        '404':
          description: Dictionary not found
components:
  schemas:
    AddEntryDto:
      type: object
      properties:
        key:
          type: string
          description: Dictionary key (e.g., "100", "and", "thousand")
          example: '100'
          maxLength: 256
      required:
        - key

````