We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f5596a commit da85d3dCopy full SHA for da85d3d
typing-server/openapi.yaml
@@ -119,6 +119,36 @@ paths:
119
"400":
120
description: 不正なリクエストです。
121
122
+ /scores/{user-id}/current-rank:
123
+ get:
124
+ tags:
125
+ - user
126
+ operationId: getMyscoreRanking
127
+ summary: ユーザーの現在の順位を取得
128
+ parameters:
129
+ - in: path
130
+ name: user-id
131
+ schema:
132
+ type: string
133
+ format: uuid
134
+ required: true
135
+ description: ユーザーID
136
+ responses:
137
+ "200":
138
+ description: ユーザーの現在の順位を返します。
139
+ content:
140
+ application/json:
141
142
+ type: object
143
+ properties:
144
+ current-rank:
145
+ type: integer
146
+ description: ユーザーの現在の順位
147
+ "404":
148
+ description: ユーザーが見つかりません。
149
+ "500":
150
+ description: サーバーエラーが発生しました。
151
+
152
components:
153
schemas:
154
User:
0 commit comments