diff options
-rw-r--r-- | swagger.json | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/swagger.json b/swagger.json index 11358878c..41d15fd31 100644 --- a/swagger.json +++ b/swagger.json @@ -509,12 +509,20 @@ } } }, - "/session": { + "/session/{token}": { "get": { "summary": "Fetch Session information", "consumes": [ "application/x-www-form-urlencoded" ], + "parameters": [ + { + "name": "token", + "in": "path", + "required": false, + "type": "string" + } + ], "responses": { "200": { "description": "OK", |