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

# Account Group Delta Route



## OpenAPI

````yaml /openapi.json post /api/v1/brand-intelligence/tracked-groups/{group_id}/insights/delta
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/brand-intelligence/tracked-groups/{group_id}/insights/delta:
    post:
      tags:
        - Brand Intelligence
      summary: Account Group Delta Route
      operationId: >-
        account_group_delta_route_api_v1_brand_intelligence_tracked_groups__group_id__insights_delta_post
      parameters:
        - name: group_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Group Id
      requestBody:
        content:
          application/json:
            schema:
              anyOf:
                - $ref: '#/components/schemas/AccountGroupDeltaRequest'
                - type: 'null'
              title: Payload
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrandIntelligenceGroupDeltaResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    AccountGroupDeltaRequest:
      properties: {}
      additionalProperties: false
      type: object
      title: AccountGroupDeltaRequest
      description: The saved group is the complete delta subject; no client cohort hints.
    BrandIntelligenceGroupDeltaResponse:
      properties:
        group_key:
          type: string
          title: Group Key
        status:
          type: string
          enum:
            - baseline_started
            - ready
            - membership_changed
            - unavailable
          title: Status
        since:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Since
        captured_at:
          type: string
          format: date-time
          title: Captured At
        net_new_ads:
          type: integer
          minimum: 0
          title: Net New Ads
          default: 0
        accelerated_brands:
          items:
            $ref: '#/components/schemas/BrandIntelligenceGroupDeltaAcceleratedBrand'
          type: array
          maxItems: 5
          title: Accelerated Brands
        themes_entered_top_10:
          items:
            $ref: '#/components/schemas/BrandIntelligenceGroupDeltaTheme'
          type: array
          maxItems: 5
          title: Themes Entered Top 10
      type: object
      required:
        - group_key
        - status
        - captured_at
      title: BrandIntelligenceGroupDeltaResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    BrandIntelligenceGroupDeltaAcceleratedBrand:
      properties:
        advertiser_id:
          type: string
          format: uuid
          title: Advertiser Id
        name:
          type: string
          title: Name
        change:
          type: integer
          minimum: 1
          title: Change
        current_new_ads_30d:
          type: integer
          minimum: 0
          title: Current New Ads 30D
        previous_new_ads_30d:
          type: integer
          minimum: 0
          title: Previous New Ads 30D
      type: object
      required:
        - advertiser_id
        - name
        - change
        - current_new_ads_30d
        - previous_new_ads_30d
      title: BrandIntelligenceGroupDeltaAcceleratedBrand
    BrandIntelligenceGroupDeltaTheme:
      properties:
        key:
          type: string
          title: Key
        count:
          type: integer
          minimum: 0
          title: Count
      type: object
      required:
        - key
        - count
      title: BrandIntelligenceGroupDeltaTheme
    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

````