From 230f2d155b09d50d46d4aa13360297d7c3d10e81 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 22 Oct 2016 13:13:50 +0200 Subject: [PATCH] Documented tags param in GET /short-codes endpoint --- docs/swagger.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/swagger.json b/docs/swagger.json index d731f858..fea8a020 100644 --- a/docs/swagger.json +++ b/docs/swagger.json @@ -74,10 +74,22 @@ { "name": "searchTerm", "in": "query", - "description": "A query used to filter results by searching for it on the longUrl and shortCode fields. (From Shlink 1.3.0)", + "description": "A query used to filter results by searching for it on the longUrl and shortCode fields. (Since v1.3.0)", "required": false, "type": "string" }, + { + "name": "tags", + "in": "query", + "description": "A list of tags used to filter the resultset. Only short URLs tagged with at least one of the provided tags will be returned. (Since v1.3.0)", + "required": false, + "type": "array", + "schema": { + "items": { + "type": "string" + } + } + }, { "$ref": "#/parameters/Authorization" }