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

# Remove Tag from Customer

> Remove a specified tag from a customer's metadata within the store. Requires `customer_id` and `tag` in the request body, and is authenticated via the `x-store-id` header.



## OpenAPI

````yaml /api-reference/growth-api.json delete /audience/tags
openapi: 3.0.0
info:
  title: Growth API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security:
  - storeIdHeader: []
paths:
  /audience/tags:
    delete:
      tags:
        - Audience
      summary: Remove Tag from Customer
      description: >-
        Remove a specified tag from a customer's metadata within the store.
        Requires `customer_id` and `tag` in the request body, and is
        authenticated via the `x-store-id` header.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RemoveTagRequest'
      responses:
        '200':
          description: Tag successfully removed from the customer.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TagUpdateResponse'
      security:
        - storeIdHeader: []
components:
  schemas:
    RemoveTagRequest:
      type: object
      properties:
        customer_id:
          type: string
        tag:
          type: string
      required:
        - customer_id
        - tag
    TagUpdateResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            id:
              type: string
            email:
              type: string
            metadata:
              type: object
  securitySchemes:
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````