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

# AML Ongoing Monitoring Remove Search Profile Service

> AML Ongoing Monitoring Remove Search Profile Service API Documentation

For a usage description of the AML Ongoing Monitoring Remove Search Profile Service, please refer to the [AML](/essentials/aml) page.

## Endpoint

**POST** `/aml/ongoingMonitoring/removeSearchProfile`

## Swagger

<a href="/public/downloads/swagger/AML/AML.postman_collection.json" download="AML.postman_collection.json">
  <button>⬇️ Download OpenAPI YAML</button>
</a>


## OpenAPI

````yaml POST /aml/ongoingMonitoring/removeSearchProfile
openapi: 3.1.0
info:
  title: Umbrella API
  version: 1.0.0
  description: >-
    API documentation for Umbrella services including KYB, KYC, AML, payments,
    phone intelligence, onboarding, and address verification.
servers:
  - url: https://api-umbrella.io/api/services
    description: Production
  - url: https://sandbox-umbrella-api.azurewebsites.net/api/services
    description: Sandbox
security:
  - bearerAuth: []
paths:
  /aml/ongoingMonitoring/removeSearchProfile:
    post:
      summary: Remove Search Profile
      description: Removes a search profile from the AML ongoing monitoring system.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AMLRemoveProfileRequest'
      responses:
        '200':
          description: Successfully removed search profile.
        '400':
          description: Invalid request provided.
components:
  schemas:
    AMLRemoveProfileRequest:
      type: object
      required:
        - profileId
      properties:
        profileId:
          type: string
          description: Unique identifier for the entity profile in the system.
          example: 8dac-b5393ce5ef3a
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token obtained from POST /auth. Valid for 60 minutes.

````