From f40e81985f5dd129762303397a68a5da4d643254 Mon Sep 17 00:00:00 2001 From: lamusmaser Date: Thu, 29 Jun 2023 11:11:56 -0600 Subject: [PATCH] #12 - add API updates for version responses. --- 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 + ] } -```