progress on jwt

This commit is contained in:
lennyaiko
2025-04-03 17:00:10 +01:00
parent 19870edf73
commit aac09bb3a1
3 changed files with 49 additions and 3 deletions
+16
View File
@@ -0,0 +1,16 @@
{
"type": "object",
"properties": {
"username": {
"type": "string",
"example": "username"
},
"password": {
"type": "string",
"example": "password"
}
},
"xml": {
"name": "AuthorizeRequest"
}
}
@@ -0,0 +1,16 @@
{
"type": "object",
"properties": {
"resultCode": {
"type": "string",
"example": "00"
},
"resultDescription": {
"type": "string",
"example": "Successful"
}
},
"xml": {
"name": "AuthorizeResponse"
}
}