shlink/docs/swagger/paths/v1_short-urls_{shortCode}.json

378 lines
14 KiB
JSON
Raw Normal View History

{
"get": {
"operationId": "getShortUrl",
"tags": [
"Short URLs"
],
"summary": "Parse short code",
2019-12-31 18:05:02 +03:00
"description": "Get the long URL behind a short URL's short code.",
"parameters": [
2019-11-29 21:09:03 +03:00
{
"$ref": "../parameters/version.json"
},
{
"name": "shortCode",
"in": "path",
"description": "The short code to resolve.",
2018-02-03 11:53:40 +03:00
"required": true,
"schema": {
"type": "string"
}
},
{
"$ref": "../parameters/domain.json"
2018-02-03 11:53:40 +03:00
}
],
"security": [
{
"ApiKey": []
}
],
"responses": {
"200": {
"description": "The URL info behind a short code.",
2018-02-03 11:53:40 +03:00
"content": {
"application/json": {
"schema": {
"$ref": "../definitions/ShortUrl.json"
2020-02-02 10:57:04 +03:00
},
2021-12-09 17:27:18 +03:00
"example": {
"shortCode": "12Kb3",
"shortUrl": "https://doma.in/12Kb3",
"longUrl": "https://shlink.io",
"dateCreated": "2016-05-01T20:34:16+02:00",
"visitsCount": 1029,
"tags": [
"shlink"
],
"meta": {
"validSince": "2017-01-21T00:00:00+02:00",
"validUntil": null,
"maxVisits": 100
},
"domain": null,
"title": null,
"crawlable": false
}
}
}
},
"404": {
"description": "No URL was found for provided short code.",
2018-02-03 11:53:40 +03:00
"content": {
"application/problem+json": {
2018-02-03 11:53:40 +03:00
"schema": {
"allOf": [
{
"$ref": "../definitions/Error.json"
},
{
"type": "object",
"required": ["shortCode"],
"properties": {
"shortCode": {
"type": "string",
"description": "The short code with which we tried to find the short URL"
},
"domain": {
"type": "string",
"description": "The domain with which we tried to find the short URL"
}
}
}
]
},
"examples": {
"Not found": {
"$ref": "../examples/short-url-not-found.json"
}
2018-02-03 11:53:40 +03:00
}
}
}
},
"default": {
"description": "Unexpected error.",
2018-02-03 11:53:40 +03:00
"content": {
"application/problem+json": {
2018-02-03 11:53:40 +03:00
"schema": {
"$ref": "../definitions/Error.json"
}
}
}
}
}
},
"patch": {
"operationId": "editShortUrl",
"tags": [
"Short URLs"
],
"summary": "Edit short URL",
2019-12-31 18:05:02 +03:00
"description": "Update certain meta arguments from an existing short URL.",
"parameters": [
2019-11-29 21:09:03 +03:00
{
"$ref": "../parameters/version.json"
},
{
"name": "shortCode",
"in": "path",
"description": "The short code to edit.",
"required": true,
"schema": {
"type": "string"
}
},
{
"$ref": "../parameters/domain.json"
}
],
"requestBody": {
"description": "Request body.",
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "../definitions/ShortUrlEdition.json"
}
}
}
},
"security": [
{
"ApiKey": []
}
],
"responses": {
"200": {
"description": "The short URL has been properly updated.",
"content": {
"application/json": {
"schema": {
"$ref": "../definitions/ShortUrl.json"
},
2021-12-09 17:27:18 +03:00
"example": {
"shortCode": "12Kb3",
"shortUrl": "https://doma.in/12Kb3",
"longUrl": "https://shlink.io",
"dateCreated": "2016-05-01T20:34:16+02:00",
"visitsCount": 1029,
"tags": [
"shlink"
],
"meta": {
"validSince": "2017-01-21T00:00:00+02:00",
"validUntil": null,
"maxVisits": 100
},
"domain": null,
"title": "Shlink - The URL shortener",
"crawlable": false
}
}
}
},
"400": {
"description": "Provided meta arguments are invalid.",
"content": {
"application/problem+json": {
"schema": {
2019-11-29 21:09:03 +03:00
"type": "object",
"allOf": [
{
"$ref": "../definitions/Error.json"
2019-11-29 21:09:03 +03:00
},
{
"type": "object",
"required": ["invalidElements"],
"properties": {
"invalidElements": {
"type": "array",
"items": {
"type": "string",
"enum": [
"longUrl",
2019-11-29 21:09:03 +03:00
"validSince",
"validUntil",
"maxVisits"
]
}
}
}
}
]
},
"examples": {
"Invalid arguments": {
"$ref": "../examples/short-url-invalid-args.json"
}
}
}
}
},
"404": {
"description": "No URL was found for provided short code.",
"content": {
"application/problem+json": {
"schema": {
"allOf": [
{
"$ref": "../definitions/Error.json"
},
{
"type": "object",
"required": ["shortCode"],
"properties": {
"shortCode": {
"type": "string",
"description": "The short code with which we tried to find the short URL"
},
"domain": {
"type": "string",
"description": "The domain with which we tried to find the short URL"
}
}
}
]
},
"examples": {
"Not found": {
"$ref": "../examples/short-url-not-found.json"
}
}
}
}
},
"default": {
"description": "Unexpected error.",
"content": {
"application/problem+json": {
"schema": {
"$ref": "../definitions/Error.json"
}
}
}
}
}
},
"delete": {
"operationId": "deleteShortUrl",
"tags": [
"Short URLs"
],
"summary": "Delete short URL",
2019-12-31 18:05:02 +03:00
"description": "Deletes the short URL for provided short code.",
"parameters": [
2019-11-29 21:09:03 +03:00
{
"$ref": "../parameters/version.json"
},
{
"name": "shortCode",
"in": "path",
"description": "The short code to edit.",
"required": true,
"schema": {
"type": "string"
}
},
{
"$ref": "../parameters/domain.json"
}
],
"security": [
{
"ApiKey": []
}
],
"responses": {
"204": {
"description": "The short URL has been properly deleted."
},
"422": {
"description": "The visits threshold in shlink does not allow this short URL to be deleted.",
"content": {
"application/problem+json": {
"schema": {
2021-12-09 17:27:18 +03:00
"allOf": [
{
"$ref": "../definitions/Error.json"
},
{
"type": "object",
"required": ["shortCode", "threshold"],
"properties": {
"shortCode": {
"type": "string",
"description": "The short code with which we tried to find the short URL to delete"
},
"domain": {
"type": "string",
"description": "The domain with which we tried to find the short URL to delete"
},
"threshold": {
"type": "number",
"description": "The amount of visits currently configured as threshold to allow deleting short UYRLs or not"
}
}
}
]
},
"example": {
"title": "Cannot delete short URL",
2021-12-15 00:21:53 +03:00
"type": "INVALID_SHORT_URL_DELETION",
2021-12-09 17:27:18 +03:00
"detail": "Impossible to delete short URL with short code \"abc123\", since it has more than \"15\" visits.",
"status": 422,
"shortCode": "abc123",
"threshold": 15
}
}
}
},
"404": {
"description": "No URL was found for provided short code.",
"content": {
"application/problem+json": {
"schema": {
"allOf": [
{
"$ref": "../definitions/Error.json"
},
{
"type": "object",
"required": ["shortCode"],
"properties": {
"shortCode": {
"type": "string",
"description": "The short code with which we tried to find the short URL"
},
"domain": {
"type": "string",
"description": "The domain with which we tried to find the short URL"
}
}
}
]
},
"examples": {
"Not found": {
"$ref": "../examples/short-url-not-found.json"
}
}
}
}
},
"default": {
"description": "Unexpected error.",
"content": {
"application/problem+json": {
"schema": {
"$ref": "../definitions/Error.json"
}
}
}
}
}
}
}