-  API Key 
-  Webauthn (Passkey) 
Body
Enum options: ACTIVITY_TYPE_UPDATE_WALLET
Timestamp (in milliseconds) of the request, used to verify liveness of user requests.
Unique identifier for a given Organization.
parameters field
Unique identifier for a given Wallet.
Human-readable name for a Wallet.
Response
A successful response returns the following fields:
The activity object containing type, intent, and result
The intent of the activity
activity.intent.updateWalletIntent
The updateWalletIntent objectShow updateWalletIntent details
activity.intent.updateWalletIntent.walletId
Unique identifier for a given Wallet.
activity.intent.updateWalletIntent.walletName
Human-readable name for a Wallet.
  The result of the activity
activity.result.updateWalletResult
The updateWalletResult objectShow updateWalletResult details
activity.result.updateWalletResult.walletId
   curl --request POST \
  --url https://api.turnkey.com/public/v1/submit/update_wallet \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header "X-Stamp: <YOUR_API_KEY.YOUR_API_SECRET>" \
  --data '{
    "type": "ACTIVITY_TYPE_UPDATE_WALLET",
    "timestampMs": "<string> (e.g. 1746736509954)",
    "organizationId": "<string> (Your Organization ID)",
    "parameters": {
        "walletId": "<string>",
        "walletName": "<string>"
    }
}'
{
  "activity": {
    "id": "<activity-id>",
    "status": "ACTIVITY_STATUS_COMPLETED",
    "type": "ACTIVITY_TYPE_UPDATE_WALLET",
    "organizationId": "<organization-id>",
    "timestampMs": "<timestamp> (e.g. 1746736509954)",
    "result": {
      "activity": {
        "type": "<string>",
        "intent": {
          "updateWalletIntent": {
            "walletId": "<string>",
            "walletName": "<string>"
          }
        },
        "result": {
          "updateWalletResult": {
            "walletId": "<string>"
          }
        }
      }
    }
  }
}