delete_url
Remove a short URL or keyword from your YOURLS URL shortener to clean up unused or outdated links, ensuring your short URL directory remains organized and relevant.
Instructions
Delete a short URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
shorturl | Yes | The short URL or keyword to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"shorturl": {
"description": "The short URL or keyword to delete",
"type": "string"
}
},
"required": [
"shorturl"
],
"type": "object"
}