We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e84e635 commit e56a424Copy full SHA for e56a424
docs/swagger/routes/auth.js
@@ -104,6 +104,33 @@ module.exports = {
104
},
105
106
107
+ '/logout': {
108
+ post: {
109
+ tags: ['Auth'],
110
+ summary: 'Logout',
111
+ requestBody: {
112
+ required: true,
113
+ content: {
114
+ 'application/x-www-form-urlencoded': {
115
+ schema: {
116
+ type: 'object',
117
+ properties: {
118
+ UserId: {
119
+ type: 'string',
120
+ },
121
122
+ required: ['UserId'],
123
124
125
126
127
+ responses: {
128
+ 200: {
129
+ description: 'Terminate your api access',
130
131
132
133
134
'/profile': {
135
get: {
136
tags: ['Auth'],
0 commit comments