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

# Unlink execution tags from job executions

> Removes the links between the given execution tags and job executions; fails if any tag or job execution is not in the project. Renaming a tag or changing its matching mode recomputes all of the tag's execution links, manual changes included.



## OpenAPI

````yaml https://api.mentionlab.io/api/docs-json post /api/v1/execution-tags/unlink/many
openapi: 3.0.0
info:
  title: MentionLab Public API v0.3.4-rc
  description: ''
  version: 0.3.4-rc
  contact: {}
servers:
  - url: https://api.mentionlab.io
security: []
tags: []
paths:
  /api/v1/execution-tags/unlink/many:
    post:
      tags:
        - Execution Tags
      summary: Unlink execution tags from job executions
      description: >-
        Removes the links between the given execution tags and job executions;
        fails if any tag or job execution is not in the project. Renaming a tag
        or changing its matching mode recomputes all of the tag's execution
        links, manual changes included.
      operationId: ExecutionTagsV1Controller_unlinkManyFromJobExecutions_v1
      parameters:
        - name: x-project-id
          in: header
          description: Project ID to specify the project context
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UnlinkManyTagsJobExecutionNewDto'
      responses:
        '204':
          description: ''
        '400':
          description: >-
            The request failed validation — the body, query or path parameters
            are malformed or out of range.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: The request is missing valid authentication credentials.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '403':
          description: >-
            The authenticated principal lacks the required permission, or access
            to the requested organisation/project.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
components:
  schemas:
    UnlinkManyTagsJobExecutionNewDto:
      type: object
      properties:
        tagIds:
          description: UUIDs of the tags to unlink
          example:
            - a1b2c3d4-e5f6-7890-abcd-ef1234567890
          type: array
          items:
            type: string
        jobExecutionIds:
          description: UUIDs of the job executions to unlink the tags from
          example:
            - a1b2c3d4-e5f6-7890-abcd-ef1234567890
          type: array
          items:
            type: string
      required:
        - tagIds
        - jobExecutionIds
    ApiErrorResponse:
      type: object
      properties:
        statusCode:
          type: number
          description: HTTP status code of the error.
          example: 400
        message:
          type: string
          description: >-
            Human-readable description of the error. Validation failures return
            an array of per-field validation errors instead of a single string.
          example: Validation failed
        error:
          type: string
          description: Short name of the HTTP error.
          example: Bad Request
      required:
        - statusCode

````