> ## 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 Register Individual Service

> AML Ongoing Monitoring Register Individual Service API Documentation

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

## Endpoint

**POST** `/aml/ongoingMonitoring/registerIndividual`

## 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/registerIndividual
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/registerIndividual:
    post:
      summary: Register Individual for Monitoring
      description: Registers an individual for ongoing monitoring in the AML system.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AMLRegisterIndividualRequest'
      responses:
        '200':
          description: Successfully registered individual for monitoring.
        '400':
          description: Invalid request provided.
        '401':
          description: Authorization information is missing or invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error401'
components:
  schemas:
    AMLRegisterIndividualRequest:
      type: object
      required:
        - profileId
        - names
      properties:
        profileId:
          type: string
          description: Unique identifier for the individual profile in the system.
          example: 8dac-b5393ce5ef3a
        names:
          type: string
          description: Full name of the individual (e.g., "Elon Musk").
          example: Elon Musk
        gender:
          type: string
          description: Gender of the individual (optional, e.g., "male").
          example: male
        searchAll:
          type: string
          description: This field cannot be combined with the names parameter.
        dob:
          type: string
          description: Date of birth of the individual (optional).
          example: 1971/06/28
        fuzzySearch:
          type: string
          description: Enables fuzzy search for the name (optional).
    Error401:
      required:
        - message
      type: object
      properties:
        message:
          type: string
          example: Unauthorized request
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token obtained from POST /auth. Valid for 60 minutes.

````