get the game
Developing
GET
/games/{id}
Request
Authorization
Add the parameter
Authorization
to Headers,whose value is to concatenate the Token after the Bearer.Example:
Authorization: Bearer ********************
Path Params
id
integer
required
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 '/games/'
Responses
🟢200OK
application/json
Body
base_contest
object (base_contest_detail_for_contestants)
required
id
integer
required
game_id
integer
required
states
object (contest_states)
required
my
object (contestant)
required
id
integer
required
game_id
my_privilege
enum<string>
required
>= 0 characters
Allowed values:
adminregistered
metadata
object (metadata)
required
cover_url
string
required
readme
string
required
title
string
required
Example
{
"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
},
"my": {
"assigned_ai": {
"id": 0,
"sdk": {
"id": 0,
"name": "string"
},
"note": "string",
"status": {
"state": "pending"
},
"user": {
"avatar_url": "string",
"nickname": "string",
"username": "string"
}
},
"performance": "string",
"permissions": {
"assign_ai_enabled": true,
"public_match_enabled": true
},
"points": 0,
"user": {
"avatar_url": "string",
"nickname": "string",
"username": "string",
"bio": "string",
"department": "string",
"name": "string",
"permissions": {
"can_create_game_or_contest": "true"
},
"school": "string"
}
}
},
"id": 0,
"my_privilege": "admin",
"metadata": {
"cover_url": "string",
"readme": "string",
"title": "string"
}
}
Modified at 2023-12-20 08:30:31