Cleaned up tools and tests

This commit is contained in:
2021-12-23 13:33:58 +00:00
parent 0aa1e67be9
commit 8b91ff8dd3
6 changed files with 16 additions and 16 deletions
+10 -10
View File
@@ -1,34 +1,34 @@
#Signup
POST https://dev-auth.eggtrainer.com/auth/signup HTTP/1.1
POST https://dev-auth.krgamestudios.com/auth/signup HTTP/1.1
Content-Type: application/json
{
"email": "kayneruse@gmail.com",
"username": "Ratstail91",
"email": "example@example.com",
"username": "Example",
"password": "helloworld"
}
###
#Login
POST https://dev-auth.eggtrainer.com/auth/login HTTP/1.1
POST https://dev-auth.krgamestudios.com/auth/login HTTP/1.1
Content-Type: application/json
{
"email": "kayneruse@gmail.com",
"email": "example@example.com",
"password": "helloworld"
}
###
#Query data
GET https://dev-auth.eggtrainer.com/auth/account HTTP/1.1
GET https://dev-auth.krgamestudios.com/auth/account HTTP/1.1
Authorization: Bearer
###
#Logout
DELETE https://dev-auth.eggtrainer.com/auth/logout HTTP/1.1
DELETE https://dev-auth.krgamestudios.com/auth/logout HTTP/1.1
Authorization: Bearer
{
@@ -38,7 +38,7 @@ Authorization: Bearer
###
#Refresh
POST https://dev-auth.eggtrainer.com/auth/token HTTP/1.1
POST https://dev-auth.krgamestudios.com/auth/token HTTP/1.1
Content-Type: application/json
{
@@ -48,7 +48,7 @@ Content-Type: application/json
###
#Update account data
PATCH https://dev-auth.eggtrainer.com/auth/update HTTP/1.1
PATCH https://dev-auth.krgamestudios.com/auth/update HTTP/1.1
Content-Type: application/json
Authorization: Bearer
@@ -59,7 +59,7 @@ Authorization: Bearer
###
#Delete account
DELETE https://dev-auth.eggtrainer.com/auth/deletion HTTP/1.1
DELETE https://dev-auth.krgamestudios.com/auth/deletion HTTP/1.1
Authorization: Bearer
Content-Type: application/json