batch_create_short_urls
Create multiple short URLs in bulk to streamline link management workflows. Supports up to 50 URLs at once with custom domain options for efficient URL shortening operations.
Instructions
批量创建多个短网址,提高创建效率。最多支持50个URL。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | Yes | 短网址使用的域名 | |
urls | Yes | 要缩短的URL列表 |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"description": "短网址使用的域名",
"pattern": "^[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$",
"type": "string"
},
"urls": {
"description": "要缩短的URL列表",
"items": {
"format": "uri",
"type": "string"
},
"maxItems": 50,
"minItems": 1,
"type": "array"
}
},
"required": [
"urls",
"domain"
],
"type": "object"
}