From 791bf448afcde4d3ae90bdeed75b83c49c1ed146 Mon Sep 17 00:00:00 2001 From: lamusmaser <1940060+lamusmaser@users.noreply.github.com> Date: Sun, 30 Jul 2023 08:30:18 -0600 Subject: [PATCH] #12 - add API updates for version responses. (#13) --- mkdocs/docs/api/additional.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/mkdocs/docs/api/additional.md b/mkdocs/docs/api/additional.md index 95e1720..e66288d 100644 --- a/mkdocs/docs/api/additional.md +++ b/mkdocs/docs/api/additional.md @@ -132,10 +132,14 @@ Change watched state, where the `id` can be a single video, or channel/playlist Validate your connection with the API **GET** `/api/ping/` -When valid returns message with user id: +When valid returns message with user id and parsed TubeArchivist version (Family, Major, Minor): ```json { "response": "pong", - "user": 1 + "user": 1, + "version": [ + 0, + 3, + 6 + ] } -```