Get Common Match Making Stride Configuration
GET/v1/sandbox-common/match-making-stride
Get the set of common Match Making Stride configuration. Requires any of permissions: sandbox:config:view, sandbox:config:edit
Responses
- 200
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
strides
object[]
required
List of common MatchMakingStrides configs
name Name (string)
Possible values: non-empty and <= 125 characters
Name of the resource
description Description (string)
Possible values: <= 250 characters
Description of the resource
factory Stride Factory (string)required
Possible values: [Fixed, Probabilistic]
An enumeration.
entries
object[]
List of MatchMakingStrideEntries in this stride
step Step (integer)required
How many partitions are created at this point in the stride
overlap Overlap (integer)required
How far into adjacent skill partitions overlap when trying to match players together
min_population Min Population (integer)required
The minimum popluation required to use this step of the stride
{
"strides": [
{
"name": "string",
"description": "string",
"factory": "Fixed",
"entries": [
{
"step": 0,
"overlap": 0,
"min_population": 0
}
]
}
]
}
Loading...