mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-24 16:10:38 -06:00
21 lines
516 B
JSON
21 lines
516 B
JSON
{
|
|
"get": {
|
|
"operationId": "shortUrl",
|
|
"tags": [
|
|
"URL Shortener"
|
|
],
|
|
"summary": "Short URL",
|
|
"description": "Represents a short URL. Tracks the visit and redirects tio the corresponding long URL",
|
|
"parameters": [
|
|
{
|
|
"$ref": "../parameters/shortCode.json"
|
|
}
|
|
],
|
|
"responses": {
|
|
"302": {
|
|
"description": "Visit properly tracked and redirected"
|
|
}
|
|
}
|
|
}
|
|
}
|