shlink/docs/swagger/paths/v1_short-urls_shorten.json

104 lines
3.5 KiB
JSON
Raw Normal View History

{
"get": {
"operationId": "shortenUrl",
"deprecated": true,
"tags": [
"Short URLs"
],
"summary": "Create a short URL",
"description": "**[Deprecated]** Use [Create short URL](#/Short%20URLs/createShortUrl) instead",
"parameters": [
2019-11-29 12:09:03 -06:00
{
"$ref": "../parameters/version.json"
},
{
"name": "apiKey",
"in": "query",
"description": "The API key used to authenticate the request",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "longUrl",
"in": "query",
"description": "The URL to be shortened",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "format",
"in": "query",
"description": "The format in which you want the response to be returned. You can also use the \"Accept\" header instead of this",
"required": false,
"schema": {
"type": "string",
"enum": [
"txt",
"json"
]
}
}
],
"responses": {
"200": {
"description": "The list of short URLs",
"content": {
"application/json": {
"schema": {
"$ref": "../definitions/ShortUrl.json"
2021-12-09 08:27:18 -06:00
},
"example": {
"longUrl": "https://github.com/shlinkio/shlink",
"shortUrl": "https://s.test/abc123",
2021-12-09 08:27:18 -06:00
"shortCode": "abc123",
"dateCreated": "2016-08-21T20:34:16+02:00",
"visitsSummary": {
"total": 0,
"nonBots": 0,
"bots": 0
},
2021-12-09 08:27:18 -06:00
"tags": [
"games",
"tech"
],
"meta": {
"validSince": "2017-01-21T00:00:00+02:00",
"validUntil": null,
"maxVisits": 100
},
"domain": null,
"title": null,
"crawlable": false
}
},
"text/plain": {
"schema": {
"type": "string"
2020-02-02 01:57:04 -06:00
},
"example": "https://s.test/abc123"
2021-12-09 08:27:18 -06:00
}
}
},
"default": {
"description": "Unexpected error.",
"content": {
"application/problem+json": {
"schema": {
"$ref": "../definitions/Error.json"
}
},
"text/plain": {
"schema": {
"type": "string"
}
}
}
}
}
}
}