From c13ffcaafdda283c727ac9dcd2103975a994711c Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 10 Apr 2024 18:22:39 +0200 Subject: [PATCH] fix version string parsing docs --- mkdocs/docs/api/additional.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/mkdocs/docs/api/additional.md b/mkdocs/docs/api/additional.md index 480fa8d..abf73d5 100644 --- a/mkdocs/docs/api/additional.md +++ b/mkdocs/docs/api/additional.md @@ -129,18 +129,14 @@ Change watched state, where the `id` can be a single video, or channel/playlist ``` ## Ping -Validate your connection with the API +Validate your connection and authentication with the API **GET** `/api/ping/` -When valid returns message with user id and parsed TubeArchivist version (Family, Major, Minor): +When valid returns message with user id and TubeArchivist version: ```json { "response": "pong", "user": 1, - "version": [ - 0, - 3, - 6 - ] + "version": "v0.4.7" } ```