Convex

Convex

FieldValue
NamesigningDeleteKey
TitleDelete Key (Signing Service)
DescriptionPermanently delete a key from the signing service. Irreversible. Elevated: first call returns confirmUrl, retry with confirmToken.
Input Schema
{
  "type": "object",
  "required": ["publicKey",
               "passphrase"],
  "properties": {
                  "passphrase": {
                                  "type": "string",
                                  "description": "Passphrase used when the key was created or imported (verifies ownership)"
                                },
                  "confirmToken": {
                                    "type": "string",
                                    "description": "Confirmation token from browser approval (omit on first call)"
                                  },
                  "publicKey": {
                                 "type": "string",
                                 "description": "Public key identifying which key to delete (hex string)"
                               }
                }
}
Output Schema
{
  "type": "object",
  "properties": {
                  "deleted": {
                               "type": "boolean",
                               "description": "true if the key was successfully deleted"
                             },
                  "confirmUrl": {
                                  "type": "string",
                                  "description": "URL for user to visit and approve the operation"
                                },
                  "status": {
                              "type": "string",
                              "description": "confirmation_required when user approval is needed"
                            },
                  "confirmToken": {
                                    "type": "string",
                                    "description": "Token to include when retrying after approval"
                                  }
                }
}