change_keyword
Modify the keyword of an existing short URL to update it with a new keyword or title, ensuring the short URL remains accurate and relevant.
Instructions
Change the keyword of an existing short URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
newshorturl | Yes | The new keyword to use | |
oldshorturl | Yes | The existing short URL or keyword | |
title | No | Optional new title |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"newshorturl": {
"description": "The new keyword to use",
"type": "string"
},
"oldshorturl": {
"description": "The existing short URL or keyword",
"type": "string"
},
"title": {
"description": "Optional new title",
"type": "string"
}
},
"required": [
"oldshorturl",
"newshorturl"
],
"type": "object"
}