> ## 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.

# List contact triggers for a live program



## OpenAPI

````yaml /openapi.json get /api/programs/{id}/triggers
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/programs/{id}/triggers:
    get:
      tags:
        - Programs
      summary: List contact triggers for a live program
      operationId: ProgramController_listProgramTriggers
      parameters:
        - name: id
          required: true
          in: path
          description: Program ID
          schema:
            type: string
        - name: status
          required: false
          in: query
          description: Filter by trigger status
          schema:
            type: string
            enum:
              - pending
              - triggered
              - cancelled
      responses:
        '200':
          description: List of contact triggers
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ContactTriggerResponseDto'
        '404':
          description: Program not found
      security:
        - bearer: []
components:
  schemas:
    ContactTriggerResponseDto:
      type: object
      properties:
        id:
          type: string
          description: Trigger ID
        contactId:
          type: string
          description: Contact ID
        contactName:
          type: string
          description: Contact full name
          nullable: true
        contactPhone:
          type: string
          description: Contact primary phone
        triggerAt:
          type: string
          description: When the trigger fires
        attributeValue:
          type: string
          description: The raw date attribute value
        status:
          type: string
          enum:
            - pending
            - triggered
            - cancelled
          description: Trigger status
        triggeredAt:
          type: string
          description: When the trigger was processed
          nullable: true
        createdAt:
          type: string
          description: When the trigger was created
      required:
        - id
        - contactId
        - contactPhone
        - triggerAt
        - attributeValue
        - status
        - createdAt
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````