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

# Remove inbox tags from a contact thread

> Remove one or more tags from a contact thread.

Required parameters:
- contactId: contact ID path parameter.
- tagIds: array of tag IDs in the request body.

Optional body fields:
- senderIdentityId: target one sender-specific thread when the same contact appears under multiple sender identities.

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



## OpenAPI

````yaml https://openapi.enginy.ai/definitions.json delete /v1/inbox/contacts/:contactId/tags
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/inbox/contacts/:contactId/tags:
    delete:
      tags:
        - Inbox
      summary: Remove inbox tags from a contact thread
      description: >-
        Remove one or more tags from a contact thread.


        Required parameters:

        - contactId: contact ID path parameter.

        - tagIds: array of tag IDs in the request body.


        Optional body fields:

        - senderIdentityId: target one sender-specific thread when the same
        contact appears under multiple sender identities.

            > **Required scope:** `MESSAGING_WRITE`
            >
            > **Rate limit:** 30 requests per minute
      parameters:
        - schema:
            type: string
            description: Contact ID for the thread you want to inspect
            example: '123'
          required: true
          description: Contact ID for the thread you want to inspect
          name: contactId
          in: path
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                tagIds:
                  type: array
                  items:
                    type: integer
                    exclusiveMinimum: 0
                  minItems: 1
                  description: Tag IDs to attach or remove
                  example:
                    - 5
                    - 8
                senderIdentityId:
                  type: integer
                  exclusiveMinimum: 0
                  description: >-
                    Optional sender identity ID to scope the contact thread
                    before mutating tags
                  example: 14
              required:
                - tagIds
            examples:
              default:
                summary: Remove one tag from a contact thread
                value:
                  tagIds:
                    - 8
                  senderIdentityId: 14
      responses:
        '200':
          description: Inbox tags removed successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      contactId:
                        type: number
                        description: Contact ID
                      tagIds:
                        type: array
                        items:
                          type: number
                        description: Requested tag IDs
                      success:
                        type: boolean
                        description: Whether all tag operations succeeded
                    required:
                      - contactId
                      - tagIds
                      - success
                required:
                  - status
                  - message
                  - data
              examples:
                default:
                  summary: Tags removed
                  value:
                    status: success
                    message: Inbox tags removed successfully
                    data:
                      contactId: 123
                      tagIds:
                        - 8
                      success: true
        '400':
          description: Invalid contact ID
        '404':
          description: Contact, thread, sender identity, or tags not found
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````