> For the complete documentation index, see [llms.txt](https://docs.defisaver.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.defisaver.com/triggers/additional/aavev3mindebttrigger.md).

# AaveV3MinDebtTrigger

### Description

Additional trigger that triggers only if the debt of the user's Aave V3 position is above the defined limit set by the backend automation system.

### Trigger ID

`0xb3fa1599`

### SDK Action

```ts
None
```

### Subscription Parameters

```solidity
None
```

### Calldata Parameters

```solidity
/// @param user address of the user whose position we check
/// @param market aaveV3 market address
/// @param minDebt minimum debt in whole USD (no decimals, e.g. 5000 for 5000 USD) that the user must have for the trigger to return true
struct CalldataParams {
    address user;
    address market;
    uint256 minDebt;
}
```

### IsChangeable

`false`
