- api-key
- ladder
- ladder-entry
- result
- invite
- account
- credit
- matchmaking
- bulk
Adds a self-managed entry to a ladder.
POST
/v1/ladder-entry
ladder-entry
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
ladderId
integer
required
Example:
0
name
string
required
Example:
Jane Doe
rating
integer
optional
Example:
1500
reliabilityDeviation
integer
optional
Example:
350
Example
{
"ladderId": 0,
"name": "Jane Doe",
"rating": 1500,
"reliabilityDeviation": 350
}
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-entry' \
--header 'Content-Type: application/json' \
--data-raw '{
"ladderId": 0,
"name": "Jane Doe",
"rating": 1500,
"reliabilityDeviation": 350
}'
Responses
🟢200OK
application/json
Body
id
number
read-onlyoptional
Example:
0
ladderId
integer
required
Example:
0
name
string
required
Example:
Jane Doe
rating
integer
optional
Example:
1500
reliabilityDeviation
integer
optional
Example:
350
accountIds
array[integer]
read-onlyoptional
Example
{
"id": 0,
"ladderId": 0,
"name": "Jane Doe",
"rating": 1500,
"reliabilityDeviation": 350,
"accountIds": [
0
]
}
🟠400Bad request
🟠401Unauthorized
🟠429Too Many Requests