fix version string parsing docs

This commit is contained in:
Simon 2024-04-10 18:22:39 +02:00
parent 8d64b9a797
commit c13ffcaafd
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
1 changed files with 3 additions and 7 deletions

View File

@ -129,18 +129,14 @@ Change watched state, where the `id` can be a single video, or channel/playlist
``` ```
## Ping ## Ping
Validate your connection with the API Validate your connection and authentication with the API
**GET** `/api/ping/` **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 ```json
{ {
"response": "pong", "response": "pong",
"user": 1, "user": 1,
"version": [ "version": "v0.4.7"
0,
3,
6
]
} }
``` ```