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

# Stop tracking an affiliate report

> Removes an affiliate report request, so later screening runs no longer pull a report for that affiliation. Reports already pulled remain on the runs that produced them.




## OpenAPI

````yaml https://app.herondata.io/swagger delete /api/end_users/{end_user_heron_id}/background_check/affiliations/reports/{ref}
openapi: 3.0.0
info:
  contact:
    email: support@herondata.io
    name: Support
  title: Heron Data API
  version: '2021-07-19'
servers:
  - description: Production
    url: https://app.herondata.io
security:
  - ApiKeyAuth:
      - key_XXX
externalDocs:
  description: Read Tutorial
  url: https://docs.herondata.io/
paths:
  /api/end_users/{end_user_heron_id}/background_check/affiliations/reports/{ref}:
    delete:
      tags:
        - EndUsers
      summary: Stop tracking an affiliate report
      description: >
        Removes an affiliate report request, so later screening runs no longer
        pull a report for that affiliation. Reports already pulled remain on the
        runs that produced them.
      parameters:
        - description: The Heron ID of the end user
          in: path
          name: end_user_heron_id
          required: true
          schema:
            type: string
        - description: >-
            The affiliate report request reference returned when it was
            requested
          in: path
          name: ref
          required: true
          schema:
            type: string
      responses:
        '204':
          description: Request removed
        '404':
          description: End user not found, or affiliations are not enabled for this account
        '409':
          description: The affiliate report request does not exist
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: x-api-key
      type: apiKey

````