delete_short_url
Remove a specific short URL from the DWZ Short URL service. This action permanently deletes the link and cannot be undone.
Instructions
删除指定的短网址。删除后无法恢复,请谨慎操作。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | 要删除的短网址ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "要删除的短网址ID",
"minimum": 1,
"type": "integer"
}
},
"required": [
"id"
],
"type": "object"
}