From 64b75f711a11e537194796742b16a9d3179bbd86 Mon Sep 17 00:00:00 2001 From: Tekaoh <45337851+Tekaoh@users.noreply.github.com> Date: Fri, 21 Mar 2025 20:20:03 -0400 Subject: [PATCH] Updated Web API Spec (markdown) --- Web-API-Spec.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Web-API-Spec.md b/Web-API-Spec.md index 7f5b42c..6dd2842 100644 --- a/Web-API-Spec.md +++ b/Web-API-Spec.md @@ -68,13 +68,13 @@ Content-Type: application/x-www-form-urlencoded user_name=playsswgyodadoes&secretKey=somesuperdupersecretkey ``` -You can then get the admin level for this user from your application and send it back as a stringified integer in JSON format like this: +You can then get the admin level for this user from your application and send it back in JSON format like this: ``` ### Response Content-Type: application/json { - "message": "50" + "message": 50 } ```