From f70d76390bfa593e34cb6fb3657f131e73c5fa9b Mon Sep 17 00:00:00 2001 From: Radical Date: Fri, 2 May 2025 21:39:03 +0200 Subject: [PATCH] Revert "docs: add user endpoint from backend" This reverts commit 37309f461b17cee925ff924a6ddd9c58e4eceecc. --- API/client-server/v1/user.md | 64 ------------------------------------ 1 file changed, 64 deletions(-) delete mode 100644 API/client-server/v1/user.md diff --git a/API/client-server/v1/user.md b/API/client-server/v1/user.md deleted file mode 100644 index 4c1d53d..0000000 --- a/API/client-server/v1/user.md +++ /dev/null @@ -1,64 +0,0 @@ -POST /v1/user/me -POST /v1/user/{UUID} - ---- - -Gathers information about the requested user. - ---- - -## Request - -| Name | Type | Description | -| ------------ | ------ | ------------------------------------ | -| access_token | string | **Required**: The user's auth token. | - - -```json -{ - "access_token": "85b2afece430e0e924f2d4277324c868", -} -``` - ---- - -## Responses - -| Status | Description | -| ------ | ----------------------------------------------- | -| 200 | User data found. | -| 400 | The post request included poorly formated data. | -| 403 | Invalid access token. | -| 500 | An unhandled error occured. | - ---- - -### 200 - -| Name | Type | Description | -| ------------ | ------ | ---------------------------------- | -| uuid | string | UUID of the requested user | -| username | string | Username of the requested user | -| display_name | string | Display Name of the requested user | - -```json -{ - "uuid": "7292d678-e718-4dbc-b2d5-e42a22abfdd6", - "username": "radial_4740", - "display_name": "Radial" -} -``` - ---- - -### 500 - -| Name | Type | Description | -| ----- | ------ | -------------------------------- | -| error | string | The error the server encountered | - -```json -{ - "error": "Something went wrong!", -} -```