DELETE
/
v1
/
wallets
/
{walletId}
/
auto-settlements
/
rules
/
{id}
Delete Rule
curl --request DELETE \
  --url https://api.blockradar.co/v1/wallets/{walletId}/auto-settlements/rules/{id} \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "destination": {
      "address": "0xD2b6be31932E0294F2ebD14a008C3f1E05B47BC4",
      "asset": "USDC",
      "blockchain": "optimism"
    },
    "id": "312ed6b6-cdde-4761-989d-c8e2b6047e19",
    "isActive": true,
    "name": "Swap from Base USDC to Optimism USDC",
    "order": "RECOMMENDED",
    "slippageTolerance": "5",
    "source": {
      "assets": [
        "USDC"
      ],
      "blockchain": "base",
      "maxAmount": "1000",
      "minAmount": "1"
    }
  },
  "message": "Auto settlement rule deleted successfully",
  "statusCode": 200
}

Authorizations

x-api-key
string
header
required

Path Parameters

walletId
string
required
Example:

"{{walletId}}"

id
string
required
Example:

"55869cbe-fa3a-44d2-a7e3-d65c08355e4d"

Response

200 - application/json

200

The response is of type object.