curl -X POST '/v1/agentic-wallets/aw_01abc123/activation/activate' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"email_otp": "123456"
}'
{
"success": true,
"message": "Wallet activated successfully",
"data": {
"wallet_id": "aw_01abc123",
"status": "active"
}
}
Agentic Wallets
Activate Wallet
Activate an agentic wallet after OTP verification
POST
/
v1
/
agentic-wallets
/
{walletId}
/
activation
/
activate
curl -X POST '/v1/agentic-wallets/aw_01abc123/activation/activate' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"email_otp": "123456"
}'
{
"success": true,
"message": "Wallet activated successfully",
"data": {
"wallet_id": "aw_01abc123",
"status": "active"
}
}
string
required
Bearer token:
Bearer YOUR_ACCESS_TOKENstring
required
The wallet ID to activate.
string
required
The email OTP code received after calling the send-email-otp endpoint.
string
TOTP code from your authenticator app (required if 2FA is enabled on your account).
curl -X POST '/v1/agentic-wallets/aw_01abc123/activation/activate' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"email_otp": "123456"
}'
{
"success": true,
"message": "Wallet activated successfully",
"data": {
"wallet_id": "aw_01abc123",
"status": "active"
}
}

