This commit was merged in pull request #2.
This commit is contained in:
Azeez Muibi
2025-04-15 16:56:37 +01:00
parent aafb9a9b41
commit ba96d7a8b4
4 changed files with 72 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
{
"type": "object",
"properties": {
"username": {
"type": "string",
"example": "digifiuser"
},
"password": {
"type": "string",
"example": "digifipass"
}
},
"required": ["username", "password"]
}
+13
View File
@@ -0,0 +1,13 @@
{
"type": "object",
"properties": {
"jwt_token": {
"type": "string",
"example": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJkaWdpZml1c2VyIiwibmFtZSI6ImJhY2tvZmZpY2UgdXNlciIsImlhdCI6MTUxNjIzOTAyMn0.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c"
},
"name": {
"type": "string",
"example": "backoffice user"
}
}
}