Skip to main content
GET
/
v2
/
wallets
/
risk
/
alerts
List Risk Alerts
curl --request GET \
  --url https://sandbox.groundtech.co/v2/wallets/risk/alerts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "portfolioWalletId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "riskRuleId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "yieldSourceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "metricsObservationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "thresholdValue": 123,
      "observedValue": 123,
      "baselineValue": 123,
      "observedChangeBps": 123,
      "windowSeconds": 123,
      "explanation": {},
      "triggeredAt": "2023-11-07T05:31:56Z",
      "resolvedAt": "2023-11-07T05:31:56Z",
      "resolutionSource": "<string>",
      "resolutionNote": "<string>"
    }
  ],
  "nextCursor": "<string>",
  "hasMore": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

portfolioWalletIds
string<uuid>[]

Optional repeatable or comma-separated portfolio wallet IDs.

status
enum<string>
Available options:
ongoing,
resolved
limit
integer
default:100
Required range: 1 <= x <= 500
cursor
string

Cursor returned by the previous page.

Response

Risk alerts

data
object[]
nextCursor
string | null
hasMore
boolean