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

# Dry Run Suppress Identifiers in Bulk

> Preview what a bulk suppression import would create, skip and reject.



## OpenAPI

````yaml https://api.useinvent.com/openapi.json post /orgs/{org_id}/suppressions/bulk/dry
openapi: 3.1.0
info:
  version: 1.0.0
  title: Invent API
servers:
  - url: https://api.useinvent.com
security:
  - bearerAuth: []
paths:
  /orgs/{org_id}/suppressions/bulk/dry:
    post:
      tags:
        - Orgs Suppressions
      summary: Dry Run Suppress Identifiers in Bulk
      description: Preview what a bulk suppression import would create, skip and reject.
      parameters:
        - schema:
            type: string
          required: true
          description: The ID of the org
          name: org_id
          in: path
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateSuppressionsSchema'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/CreateSuppressionsSchema'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuppressionsImportedDryRunSchema'
components:
  schemas:
    CreateSuppressionsSchema:
      type: object
      properties:
        reason:
          allOf:
            - $ref: '#/components/schemas/SuppressionReasonSchema'
            - description: Applied to every row. Defaults to MANUAL.
        identifiers:
          type: array
          items:
            $ref: '#/components/schemas/SuppressionOptionSchema'
          maxItems: 50000
      required:
        - identifiers
      description: Schema for suppressing many identifiers at once
    SuppressionsImportedDryRunSchema:
      type: object
      properties:
        created:
          type: array
          items:
            $ref: '#/components/schemas/SuppressionOptionSchema'
        skipped:
          type: array
          items:
            $ref: '#/components/schemas/SuppressionOptionSchema'
        invalid:
          type: array
          items:
            $ref: '#/components/schemas/SuppressionInvalidSchema'
      required:
        - created
        - skipped
        - invalid
      description: Preview of what a bulk suppression import would do
    SuppressionReasonSchema:
      type: string
      enum:
        - BOUNCE
        - COMPLAINT
        - UNSUBSCRIBE
        - MANUAL
        - LEGAL
      description: Why the identifier is suppressed
    SuppressionOptionSchema:
      type: object
      properties:
        channel:
          $ref: '#/components/schemas/SuppressionChannelSchema'
        identifier:
          type: string
          maxLength: 320
          description: The email or phone number to suppress
      required:
        - channel
        - identifier
      description: A single identifier to suppress
    SuppressionInvalidSchema:
      type: object
      properties:
        index:
          type: number
          description: Position of the identifier in the submitted array
        identifier:
          $ref: '#/components/schemas/SuppressionOptionSchema'
        reason:
          $ref: '#/components/schemas/SuppressionInvalidReasonSchema'
      required:
        - index
        - identifier
        - reason
      description: A rejected identifier with the reason it failed validation
    SuppressionChannelSchema:
      type: string
      enum:
        - EMAIL
        - PHONE
      description: The channel an identifier is suppressed on
    SuppressionInvalidReasonSchema:
      type: string
      enum:
        - INVALID_EMAIL
        - INVALID_PHONE
        - MISSING_IDENTIFIER
      description: Why an imported identifier was rejected
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: Bearer token authentication using your API key

````