get current user
GET
/user
Request
Authorization
Add the parameter
Authorization
to Headers,whose value is to concatenate the Token after the Bearer.Example:
Authorization: Bearer ********************
Header Params
Authorization
string
optional
Example:
Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoyLCJleHAiOjE3MDMyNTI2MjksImlzcyI6Imp3dCJ9.xVgX6lOYAI2qIplzTWo5s7PExnlnYOFD7uY9RzU3FF0
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/user' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoyLCJleHAiOjE3MDMyNTI2MjksImlzcyI6Imp3dCJ9.xVgX6lOYAI2qIplzTWo5s7PExnlnYOFD7uY9RzU3FF0'
Responses
🟢200OK
application/json
Body
avatar_url
string
required
nickname
string
required
username
string
required
bio
string
optional
department
string
optional
name
string
optional
permissions
object
required
can_create_game_or_contest
boolean
required
Default:
true
school
string
optional
contests_registered
array[object (contest) {5}]
required
base_contest
object (base_contest)
optional
id
integer
required
my_privilege
enum<string>
required
Allowed values:
adminregisteredunregistered
metadata
object (metadata)
required
registration
object
optional
email
string
required
Example
{
"avatar_url": "string",
"nickname": "string",
"username": "string",
"bio": "string",
"department": "string",
"name": "string",
"permissions": {
"can_create_game_or_contest": "true"
},
"school": "string",
"contests_registered": [
{
"base_contest": {
"id": 0,
"game_id": 0,
"states": {
"assign_ai_enabled": true,
"commit_ai_enabled": true,
"contest_script_environment_enabled": true,
"private_match_enabled": true,
"public_match_enabled": true,
"test_match_enabled": true
}
},
"id": 0,
"my_privilege": "admin",
"metadata": {
"cover_url": "string",
"readme": "string",
"title": "string"
},
"registration": {
"registration_enabled": true
}
}
],
"email": "string"
}
🟠401Unauthorized
🟠404User Not Found
Modified at 2023-12-21 13:47:08