- api-key
- ladder
- ladder-entry
- result
- invite
- account
- credit
- matchmaking
- bulk
Adds a ladder to an account.
POST
/v1/ladder
ladder
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
name
string
required
Example:
My Ladder
ratingAlgorithm
string
optional
Example:
Glicko-1
glickoCValue
number
optional
Default:
18.13
glicko2RValue
number
optional
Default:
0.5
playersCanEnterResults
boolean
optional
Example:
false
allowFullResultHistory
boolean
optional
Example:
true
Example
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 POST 'https://api.competier.net/v1/ladder' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200OK
application/json
Body
id
number
read-onlyoptional
Example:
0
name
string
required
Example:
My Ladder
ratingAlgorithm
string
optional
Example:
Glicko-1
glickoCValue
number
optional
Default:
18.13
glicko2RValue
number
optional
Default:
0.5
playersCanEnterResults
boolean
optional
Example:
false
allowFullResultHistory
boolean
optional
Example:
true
Example
{
"id": 0,
"name": "My Ladder",
"ratingAlgorithm": "Glicko-1",
"glickoCValue": 18.13,
"glicko2RValue": 0.5,
"playersCanEnterResults": false,
"allowFullResultHistory": true
}
🟠400Bad request
🟠401Unauthorized
🟠429Too Many Requests
Modified at 2024-06-16 11:54:03