unarchive_wallet_group
Restore archived wallet groups on Armor Crypto MCP by specifying group names. Returns a response confirming the unarchiving process for each group.
Instructions
Unarchive wallet groups.
Expects a list of group names, returns a list of GroupArchiveOrUnarchiveResponse.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
unarchive_wallet_group_requests | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"UnarchiveWalletGroupRequest": {
"properties": {
"group": {
"description": "Name of the group to unarchive",
"title": "Group",
"type": "string"
}
},
"required": [
"group"
],
"title": "UnarchiveWalletGroupRequest",
"type": "object"
},
"UnarchiveWalletGroupRequestContainer": {
"properties": {
"unarchive_wallet_group_requests": {
"items": {
"$ref": "#/$defs/UnarchiveWalletGroupRequest"
},
"title": "Unarchive Wallet Group Requests",
"type": "array"
}
},
"required": [
"unarchive_wallet_group_requests"
],
"title": "UnarchiveWalletGroupRequestContainer",
"type": "object"
}
},
"properties": {
"unarchive_wallet_group_requests": {
"$ref": "#/$defs/UnarchiveWalletGroupRequestContainer"
}
},
"required": [
"unarchive_wallet_group_requests"
],
"title": "unarchive_wallet_groupArguments",
"type": "object"
}