## Requirements

- Authenticate with an API key that has `ACCESS` level permissions.  
- Send a `POST` request to `/omni/process/global-watchlist`.  
- Optionally include a `WatchlistRequest` body. If you omit the body, the endpoint typically uses your workflow configuration.

## Endpoint

- **Method:** `POST`  
- **Path:** `/omni/process/global-watchlist`  
- **Operation ID:** `processGlobalWatchlist`

## Authentication

- Send an API key with **ACCESS** level permissions.

## Request body

The request body is optional. This endpoint typically uses your workflow configuration when you do not send a body.

| Field          | Type                  | Required | Description                                         |
|----------------|-----------------------|----------|-----------------------------------------------------|
| Request Body   | `WatchlistRequest`    | No       | Optional request body for watchlist processing.     |

## Response

This endpoint returns a `BasicResponse` object.

```json
{
  "success": true
}
```

### Response fields

| Field    | Type     | Description                                               |
|----------|----------|-----------------------------------------------------------|
| `success`| `boolean`| Indicates whether the request was processed successfully. |
