> ## 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 contacts to audience

> Add multiple contacts to an audience segment



## OpenAPI

````yaml /openapi.json post /api/audience/{id}/add-contacts
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/audience/{id}/add-contacts:
    post:
      tags:
        - Audiences
      summary: Add contacts to audience
      description: Add multiple contacts to an audience segment
      operationId: AudienceController_addContacts
      parameters:
        - name: id
          required: true
          in: path
          description: Audience UUID
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddContactsDto'
      responses:
        '200':
          description: Contacts added successfully
        '404':
          description: Audience not found
components:
  schemas:
    AddContactsDto:
      type: object
      properties:
        contacts:
          example:
            - 123e4567-e89b-12d3-a456-426614174000
            - 123e4567-e89b-12d3-a456-426614174001
          type: array
          items:
            type: string
      required:
        - contacts

````