POST
/
public
/
v1
/
submit
/
export_wallet
Authorizations
Body
Enum options:
ACTIVITY_TYPE_EXPORT_WALLET
Timestamp (in milliseconds) of the request, used to verify liveness of user requests.
Unique identifier for a given Organization.
The parameters object containing the specific intent data for this activity.
Show details
Show details
Client-side public key generated by the user, to which the export bundle will be encrypted.
Enum options:
MNEMONIC_LANGUAGE_ENGLISH
, MNEMONIC_LANGUAGE_SIMPLIFIED_CHINESE
, MNEMONIC_LANGUAGE_TRADITIONAL_CHINESE
, MNEMONIC_LANGUAGE_CZECH
, MNEMONIC_LANGUAGE_FRENCH
, MNEMONIC_LANGUAGE_ITALIAN
, MNEMONIC_LANGUAGE_JAPANESE
, MNEMONIC_LANGUAGE_KOREAN
, MNEMONIC_LANGUAGE_SPANISH
Response
A successful response returns the following fields:The activity object containing type, intent, and result
Show activity details
Show activity details
The intent of the activity
Show intent details
Show intent details
The exportWalletIntent object
Show exportWalletIntent details
Show exportWalletIntent details
Client-side public key generated by the user, to which the export bundle will be encrypted.
language fieldEnum options:
MNEMONIC_LANGUAGE_ENGLISH
, MNEMONIC_LANGUAGE_SIMPLIFIED_CHINESE
, MNEMONIC_LANGUAGE_TRADITIONAL_CHINESE
, MNEMONIC_LANGUAGE_CZECH
, MNEMONIC_LANGUAGE_FRENCH
, MNEMONIC_LANGUAGE_ITALIAN
, MNEMONIC_LANGUAGE_JAPANESE
, MNEMONIC_LANGUAGE_KOREAN
, MNEMONIC_LANGUAGE_SPANISH
The result of the activity
Show result details
Show result details
The exportWalletResult object
Show exportWalletResult details
Show exportWalletResult details
A list of objects representing a particular User’s approval or rejection of a Consensus request, including all relevant metadata.
Copy
Ask AI
curl --request POST \
--url https://api.turnkey.com/public/v1/submit/export_wallet \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <string> (see Authorizations)" \
--data '{
"type": "ACTIVITY_TYPE_EXPORT_WALLET",
"timestampMs": "<string> (e.g. 1746736509954)",
"organizationId": "<string> (Your Organization ID)",
"parameters": {
"walletId": "<string>",
"targetPublicKey": "<string>",
"language": "<MNEMONIC_LANGUAGE_ENGLISH>"
}
}'
Copy
Ask AI
{
"activity": {
"id": "<activity-id>",
"status": "ACTIVITY_STATUS_COMPLETED",
"type": "ACTIVITY_TYPE_EXPORT_WALLET",
"organizationId": "<organization-id>",
"timestampMs": "<timestamp> (e.g. 1746736509954)",
"result": {
"activity": {
"id": "<string>",
"organizationId": "<string>",
"status": "<string>",
"type": "<string>",
"intent": {
"exportWalletIntent": {
"walletId": "<string>",
"targetPublicKey": "<string>",
"language": "<MNEMONIC_LANGUAGE_ENGLISH>"
}
},
"result": {
"exportWalletResult": {
"walletId": "<string>",
"exportBundle": "<string>"
}
},
"votes": "<array>",
"fingerprint": "<string>",
"canApprove": "<boolean>",
"canReject": "<boolean>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
}
}
}