2016-10-23 00:44:14 +03:00
|
|
|
{
|
|
|
|
"get": {
|
2016-10-23 01:07:31 +03:00
|
|
|
"tags": [
|
|
|
|
"ShortCodes"
|
|
|
|
],
|
|
|
|
"summary": "Parse short code",
|
2016-10-23 00:44:14 +03:00
|
|
|
"description": "Get the long URL behind a short code.",
|
|
|
|
"parameters": [
|
|
|
|
{
|
|
|
|
"name": "shortCode",
|
|
|
|
"in": "path",
|
|
|
|
"description": "The short code to resolve.",
|
2018-02-03 11:53:40 +03:00
|
|
|
"required": true,
|
|
|
|
"schema": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"security": [
|
2016-10-23 00:44:14 +03:00
|
|
|
{
|
2018-02-03 11:53:40 +03:00
|
|
|
"Bearer": []
|
2016-10-23 00:44:14 +03:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"responses": {
|
|
|
|
"200": {
|
|
|
|
"description": "The long URL behind a short code.",
|
2018-02-03 11:53:40 +03:00
|
|
|
"content": {
|
|
|
|
"application/json": {
|
|
|
|
"schema": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"longUrl": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "The original long URL behind the short code."
|
|
|
|
}
|
|
|
|
}
|
2016-10-23 00:44:14 +03:00
|
|
|
}
|
|
|
|
}
|
2017-04-16 11:45:52 +03:00
|
|
|
},
|
|
|
|
"examples": {
|
|
|
|
"application/json": {
|
|
|
|
"longUrl": "https://shlink.io"
|
|
|
|
}
|
2016-10-23 00:44:14 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"400": {
|
|
|
|
"description": "Provided shortCode does not match the character set currently used by the app to generate short codes.",
|
2018-02-03 11:53:40 +03:00
|
|
|
"content": {
|
|
|
|
"application/json": {
|
|
|
|
"schema": {
|
|
|
|
"$ref": "../definitions/Error.json"
|
|
|
|
}
|
|
|
|
}
|
2016-10-23 00:44:14 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"404": {
|
|
|
|
"description": "No URL was found for provided short code.",
|
2018-02-03 11:53:40 +03:00
|
|
|
"content": {
|
|
|
|
"application/json": {
|
|
|
|
"schema": {
|
|
|
|
"$ref": "../definitions/Error.json"
|
|
|
|
}
|
|
|
|
}
|
2016-10-23 00:44:14 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"500": {
|
|
|
|
"description": "Unexpected error.",
|
2018-02-03 11:53:40 +03:00
|
|
|
"content": {
|
|
|
|
"application/json": {
|
|
|
|
"schema": {
|
|
|
|
"$ref": "../definitions/Error.json"
|
|
|
|
}
|
|
|
|
}
|
2016-10-23 00:44:14 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-07 22:54:02 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
"put": {
|
|
|
|
"tags": [
|
|
|
|
"ShortCodes"
|
|
|
|
],
|
|
|
|
"summary": "Edit short code",
|
|
|
|
"description": "Update certain meta arguments from an existing short URL.",
|
|
|
|
"parameters": [
|
|
|
|
{
|
|
|
|
"name": "shortCode",
|
|
|
|
"in": "path",
|
|
|
|
"description": "The short code to edit.",
|
2018-02-03 11:53:40 +03:00
|
|
|
"required": true,
|
|
|
|
"schema": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"requestBody": {
|
|
|
|
"description": "Request body.",
|
|
|
|
"required": true,
|
|
|
|
"content": {
|
|
|
|
"application/json": {
|
|
|
|
"schema": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"validSince": {
|
|
|
|
"description": "The date (in ISO-8601 format) from which this short code will be valid",
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"validUntil": {
|
|
|
|
"description": "The date (in ISO-8601 format) until which this short code will be valid",
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"maxVisits": {
|
|
|
|
"description": "The maximum number of allowed visits for this short code",
|
|
|
|
"type": "number"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"security": [
|
2018-01-07 22:54:02 +03:00
|
|
|
{
|
2018-02-03 11:53:40 +03:00
|
|
|
"Bearer": []
|
2018-01-07 22:54:02 +03:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"responses": {
|
|
|
|
"204": {
|
|
|
|
"description": "The short code has been properly updated."
|
|
|
|
},
|
|
|
|
"400": {
|
|
|
|
"description": "Provided meta arguments are invalid.",
|
2018-02-03 11:53:40 +03:00
|
|
|
"content": {
|
|
|
|
"application/json": {
|
|
|
|
"schema": {
|
|
|
|
"$ref": "../definitions/Error.json"
|
|
|
|
}
|
|
|
|
}
|
2018-01-07 22:54:02 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"404": {
|
|
|
|
"description": "No short URL was found for provided short code.",
|
2018-02-03 11:53:40 +03:00
|
|
|
"content": {
|
|
|
|
"application/json": {
|
|
|
|
"schema": {
|
|
|
|
"$ref": "../definitions/Error.json"
|
|
|
|
}
|
|
|
|
}
|
2018-01-07 22:54:02 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"500": {
|
|
|
|
"description": "Unexpected error.",
|
2018-02-03 11:53:40 +03:00
|
|
|
"content": {
|
|
|
|
"application/json": {
|
|
|
|
"schema": {
|
|
|
|
"$ref": "../definitions/Error.json"
|
|
|
|
}
|
|
|
|
}
|
2018-01-07 22:54:02 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-23 00:44:14 +03:00
|
|
|
}
|
|
|
|
}
|