Skip to main content
GET
/
wallets
/
{wallet_id}
/
policies
Get policies attached to a wallet
curl --request GET \
  --url https://api.platform.dakota.xyz/wallets/{wallet_id}/policies \
  --header 'x-api-key: <api-key>'
[
  {
    "id": "pol_2N4YkKpKu7M3mKpGYmF8kcJ8oZT",
    "name": "High Value Transaction Policy"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.dakota.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Path Parameters

wallet_id
string
required

Wallet ID KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.

Required string length: 27
Pattern: ^[0-9A-Za-z]{27}$
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

Response

Attached policies retrieved successfully

id
string
required

Policy id.

Example:

"pol_2N4YkKpKu7M3mKpGYmF8kcJ8oZT"

name
string
required

Policy name.

Example:

"High Value Transaction Policy"