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

# Post Set Threshold

## Set Threshold To Trigger Fraud Alert

The Set Threshold functionality enables users to define specific thresholds in the transaction monitoring system to detect and respond to potential fraud.
Setting a Threshold allows users establish a predefined value or criterion that, when exceeded by a transaction’s fraud score, triggers a fraud alert for further investigation.

### Request Endpoint

`POST` `{{BASE_URL}}/api/v1/monitoring/threshold`

* **Media-Type:** `application/json`

### Status Codes

* **200:** OK. Data is successfully returned.
* **201:** Created. The threshold information is set successfully.
* **400:** Bad Request. The threshold information cannot be gotten. Request is not completed successfully.
* **404:** Not Found. The threshold information is not found. Request is not completed successfully.

### Payload

```json theme={null}
{
    "threshhold": 1000
}
```

### Payload Fields

| Field       | Description                                            | Type     |
| ----------- | ------------------------------------------------------ | -------- |
| `threshold` | The threshhold is the value set to trigger fraud alert | `String` |

200 OK Response

```json theme={null}
{
  "status":"Success",
  "data":[],
  "message":"Threshold updated successfully"
}
```
