From 7f175165593d7204d018914296b375a2651a4eba Mon Sep 17 00:00:00 2001
From: Alexander Piskun <13381981+bigcat88@users.noreply.github.com>
Date: Mon, 18 Dec 2023 20:30:24 +0300
Subject: [PATCH] updated docs for "api/v1/users" endpoint (#164)
Old:
New:
Ref: https://github.com/cloud-py-api/app_api/issues/160
---
docs/tech_details/api/utils.rst | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/docs/tech_details/api/utils.rst b/docs/tech_details/api/utils.rst
index bf313632..c9c3b8a9 100644
--- a/docs/tech_details/api/utils.rst
+++ b/docs/tech_details/api/utils.rst
@@ -17,5 +17,14 @@ Returns a list of user IDs only.
.. code-block:: json
- ["user1", "user2", "user3"]
-
+ {"ocs": {
+ "meta": {
+ "status": "ok",
+ "statuscode": 100,
+ "message": "OK",
+ "totalitems": "",
+ "itemsperpage": ""
+ },
+ "data": ["admin", "alice", "bob", "jane", "john"]
+ }
+ }