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

# Releases an active suppression entry for a recipient.

> Releases an active Leadping suppression entry so a recipient can be contacted again, returning the updated suppression record when available.



## OpenAPI

````yaml /openapi.json post /suppressions/release
openapi: 3.0.4
info:
  title: Leadping API
  description: >-
    Leadping API for lead intake, messaging, calling, automations, billing,
    business settings, and compliant lead communication workflows.
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  version: v1
servers:
  - url: https://api.leadping.ai
    description: Production
security: []
tags:
  - name: Analytics
  - name: Automations
  - name: Contact
  - name: Conversations
  - name: Dispositions
  - name: Feedback
  - name: Leads
  - name: LeadStatuses
  - name: Notifications
  - name: OutboundDelivery
  - name: Sources
  - name: Suppressions
  - name: Tags
  - name: Users
  - name: Calls
  - name: PhoneNumbers
  - name: Sms
  - name: Telephony
  - name: UserDataExports
  - name: CallEvents
  - name: Events
  - name: SmsEvents
  - name: Businesses
  - name: PaymentMethods
  - name: Transactions
  - name: Usage
  - name: Wallets
paths:
  /suppressions/release:
    post:
      tags:
        - Suppressions
      summary: Releases an active suppression entry for a recipient.
      description: >-
        Releases an active Leadping suppression entry so a recipient can be
        contacted again, returning the updated suppression record when
        available.
      operationId: Suppressions_Release
      requestBody:
        description: The suppression entry request payload for the operation.
        content:
          application/json:
            schema:
              allOf:
                - $ref: '#/components/schemas/SuppressionEntryRequest'
              description: Request payload for suppression entry.
          application/*+json:
            schema:
              allOf:
                - $ref: '#/components/schemas/SuppressionEntryRequest'
              description: Request payload for suppression entry.
        required: true
      responses:
        '200':
          description: Returns the suppression entry response.
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/SuppressionEntryResponse'
                description: >-
                  API response containing suppression entry data returned to
                  callers.
        '400':
          description: The request was invalid or failed validation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    SuppressionEntryRequest:
      type: object
      properties:
        businessId:
          type: string
          description: The business ID associated with this ion entry.
        recipientIdentifier:
          type: string
          description: The recipient identifier value for this ion entry.
          nullable: true
        phoneNumber:
          type: string
          description: The phone number associated with this ion entry.
          nullable: true
        email:
          type: string
          description: The email address associated with this ion entry.
          nullable: true
        channel:
          type: string
          description: The channel value for this ion entry.
        reason:
          type: string
          description: The human-readable reason explaining this ion entry.
          nullable: true
      description: Request payload for suppression entry.
    SuppressionEntryResponse:
      type: object
      properties:
        id:
          type: string
          description: The unique ID for this ion entry.
          nullable: true
        businessId:
          type: string
          description: The business ID associated with this ion entry.
          nullable: true
        recipientIdentifier:
          type: string
          description: The recipient identifier value for this ion entry.
          nullable: true
        normalizedPhoneNumber:
          type: string
          description: The phone number associated with this ion entry.
          nullable: true
        normalizedEmail:
          type: string
          description: The normalized email value for this ion entry.
          nullable: true
        channel:
          type: string
          description: The channel value for this ion entry.
          nullable: true
        source:
          type: string
          description: The source value for this ion entry.
          nullable: true
        status:
          type: string
          description: The current status for this ion entry.
          nullable: true
        reason:
          type: string
          description: The human-readable reason explaining this ion entry.
          nullable: true
        suppressedAt:
          type: string
          description: The date and time for the suppressed at value on this ion entry.
          format: date-time
          nullable: true
        releasedAt:
          type: string
          description: The date and time for the released at value on this ion entry.
          format: date-time
          nullable: true
        audit:
          type: array
          items:
            allOf:
              - $ref: '#/components/schemas/SuppressionEntryAudit'
            description: >-
              API DTO containing ion entry audit data used by Leadping API
              contracts.
          description: The audit included with this ion entry.
      description: API response containing suppression entry data returned to callers.
    ProblemDetails:
      type: object
      properties:
        type:
          type: string
          description: URI reference that identifies the problem type.
          nullable: true
        title:
          type: string
          description: Short, human-readable summary of the problem.
          nullable: true
        status:
          pattern: ^-?(?:0|[1-9]\d*)$
          description: HTTP status code returned for the problem.
          format: int32
          nullable: true
        detail:
          type: string
          description: >-
            Human-readable explanation specific to this occurrence of the
            problem.
          nullable: true
        instance:
          type: string
          description: >-
            URI reference that identifies this specific occurrence of the
            problem.
          nullable: true
    SuppressionEntryAudit:
      type: object
      properties:
        id:
          type: string
          description: The unique ID for this ion entry audit.
        status:
          type: string
          description: The current status for this ion entry audit.
        source:
          type: string
          description: The source value for this ion entry audit.
        timestamp:
          type: string
          description: The date and time for the timestamp value on this ion entry audit.
          format: date-time
        actorId:
          type: string
          description: The actor ID associated with this ion entry audit.
          nullable: true
        reason:
          type: string
          description: The human-readable reason explaining this ion entry audit.
          nullable: true
        safeMetadata:
          type: object
          additionalProperties:
            type: string
          description: >-
            The safe metadata key-value data carried with this ion entry audit;
            values must be safe to expose in API responses.
      description: API DTO containing ion entry audit data used by Leadping API contracts.

````