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

# Unsubscribe Audience Member

> This endpoint marks an audience member as unsubscribed (soft delete), which removes their subscription status but keeps their order data. The `x-store-id` header is required for authentication.



## OpenAPI

````yaml /api-reference/growth-api.json delete /audience/{id}
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/{id}:
    delete:
      tags:
        - Audience
      summary: Unsubscribe Audience Member
      description: >-
        This endpoint marks an audience member as unsubscribed (soft delete),
        which removes their subscription status but keeps their order data. The
        `x-store-id` header is required for authentication.
      parameters:
        - name: id
          in: path
          required: true
          description: ID of the audience member.
          schema:
            type: string
      responses:
        '200':
          description: Audience member unsubscribed successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnsubscribeAudienceResponse'
      security:
        - storeIdHeader: []
components:
  schemas:
    UnsubscribeAudienceResponse:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
          enum:
            - unsubscribed
  securitySchemes:
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````