matchmaker/docs/WEBAPI_V1.md
2025-03-17 18:52:48 -07:00

664 B

Web API Documentation - Draft

/api/info

GET

{
    "supportedVersions": [
        "<VERSION IDENTIFIER>"
    ],
    "partitions": [
        "us",
        "uk"
        // ...
    ],
    "heartbeatTimeoutDuration": 7
}

/api/query

POST

{
    // if this is unspecified/null, infer a default partition
    "partition": "us",
    ""
    // Validated against a server-side maximum and minimum
    "count": 7,
    // Validated to prevent out-of-bounds issues.
    // This allows reading a slice of the instances,
    // allowing pagination.
    "offset": 0
}

/api/connect

/api/heartbeat

{
    "token": 
}