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

# Pause a contact in a campaign

> Pauses an active conversation in a campaign.

    > **Required scope:** `CAMPAIGNS_WRITE`
    >
    > **Rate limit:** 30 requests per minute



## OpenAPI

````yaml https://openapi.enginy.ai/definitions.json post /v1/pause-contact-in-campaign
openapi: 3.1.0
info:
  title: Enginy API
  version: 1.0.0
  description: Public API for Enginy platform
servers:
  - url: https://openapi.enginy.ai
    description: Configured server
security: []
tags:
  - name: AI Variables
    description: >-
      Manage AI variables and discover the entity fields you can reference in
      prompts and entity requests.
  - name: Inbox
    description: >-
      Inbox endpoints for listing contact threads, reading thread messages,
      managing tags, and sending manual replies.
  - name: Workflows
    description: >-
      Build, validate, publish, run, and inspect advanced (graph) workflows,
      plus the block/condition catalog needed to author a workflow plan.
paths:
  /v1/pause-contact-in-campaign:
    post:
      tags:
        - Campaigns
      summary: Pause a contact in a campaign
      description: |-
        Pauses an active conversation in a campaign.

            > **Required scope:** `CAMPAIGNS_WRITE`
            >
            > **Rate limit:** 30 requests per minute
      requestBody:
        content:
          application/json:
            schema:
              anyOf:
                - type: object
                  properties:
                    campaignId:
                      type: integer
                      exclusiveMinimum: 0
                      description: ID of the campaign
                    contactId:
                      type: integer
                      exclusiveMinimum: 0
                      description: ID of the contact in the campaign
                  required:
                    - campaignId
                    - contactId
                - type: object
                  properties:
                    conversationId:
                      type: integer
                      exclusiveMinimum: 0
                      description: ID of the conversation to pause
                  required:
                    - conversationId
      responses:
        '200':
          description: Conversation successfully paused
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      conversationId:
                        type: number
                        description: ID of the paused conversation
                    required:
                      - conversationId
                required:
                  - status
                  - message
                  - data
        '404':
          description: Conversation not found
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````