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

# Remove Tracked Group Member Route

> Remove an advertiser as seen from `module`.

From a module that still shares the group this removes it everywhere;
from a forked module it only affects that module.



## OpenAPI

````yaml /openapi.json delete /api/v1/brands/{brand_id}/brand-intelligence/tracked-groups/{group_id}/members/{advertiser_id}
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/brands/{brand_id}/brand-intelligence/tracked-groups/{group_id}/members/{advertiser_id}:
    delete:
      tags:
        - Brand Intelligence
        - Brand Intelligence
      summary: Remove Tracked Group Member Route
      description: |-
        Remove an advertiser as seen from `module`.

        From a module that still shares the group this removes it everywhere;
        from a forked module it only affects that module.
      operationId: >-
        remove_tracked_group_member_route_api_v1_brands__brand_id__brand_intelligence_tracked_groups__group_id__members__advertiser_id__delete
      parameters:
        - name: brand_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Brand Id
        - name: group_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Group Id
        - name: advertiser_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Advertiser Id
        - name: module
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Module
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TrackedGroupResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    TrackedGroupResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          type: string
          title: Name
        system_slug:
          anyOf:
            - type: string
            - type: 'null'
          title: System Slug
        shared_modules:
          items:
            type: string
          type: array
          title: Shared Modules
        module:
          anyOf:
            - type: string
            - type: 'null'
          title: Module
        forked:
          type: boolean
          title: Forked
          default: false
        advertiser_ids:
          items:
            type: string
            format: uuid
          type: array
          title: Advertiser Ids
        members:
          items:
            $ref: '#/components/schemas/TrackedGroupBrandSummary'
          type: array
          title: Members
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - name
        - created_at
        - updated_at
      title: TrackedGroupResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    TrackedGroupBrandSummary:
      properties:
        advertiser_id:
          type: string
          format: uuid
          title: Advertiser Id
        name:
          type: string
          title: Name
        domain:
          anyOf:
            - type: string
            - type: 'null'
          title: Domain
        industry:
          anyOf:
            - type: string
            - type: 'null'
          title: Industry
        avatar_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Avatar Url
      type: object
      required:
        - advertiser_id
        - name
      title: TrackedGroupBrandSummary
      description: >-
        Display identity for one group member.


        `advertiser_ids` alone forced every module's group table to resolve
        names

        from whatever rows it happened to have loaded, and to invent a

        `Tracked advertiser <id-prefix>` placeholder when it had none. Identity
        is

        the server's to answer: it owns the advertiser row.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````