Skip to main content
GET
/
v2
/
wallets
/
risk
/
rules
List Risk Rules
curl --request GET \
  --url https://sandbox.groundtech.co/v2/wallets/risk/rules \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "portfolioWalletId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "yieldSourceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "thresholdValue": 123,
      "windowSeconds": 123,
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "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:
active,
paused
limit
integer
default:100

Maximum rules to return in one page.

Required range: 1 <= x <= 100
cursor
string

Cursor returned by the previous page. Must be reused with the same portfolio wallet and status filters.

Response

Risk rules

data
object[]
nextCursor
string | null
hasMore
boolean