catena-tools-core (v1)

How To Use The API Explorer

On the right hand side of this page, you will see a list of "Servers".

  • Mock server: This server will return mock responses to all requests. It is best used when evaluating the shape of the Catena API.
  • Localhost: This server will point at a locally running version of Catena. It is best used when you want to make real requests or to validate that Catena is properly running on your machine.
  • Custom Domain: This server will point at any domain you specify with the domain variable. It is best used when you have a version of Catena deployed to a live environment and you want to make real requests against it.

To configure which server is shown in example requests:

  1. Select the "Try it" button on any API operation within the API explorer
  1. Select your environment
  1. If you want to point the API explorer to an instance of Catena you have deployed, select "Custom Domain" and configure the domain environment variable.
  1. You're all set! This setting will be cached across all API operations exposed in these docs.
Languages
Servers
Mock server
https://docs.catenatools.com/_mock/apis/catena-tools-core/
Localhost
http://localhost:5000/
Custom Domain
https://{domain}/

CatenaApiKeys

CatenaApiKeys

Operations

CatenaAccounts

CatenaAccounts

Operations

CatenaServerManager

The server manager service portion of the integrated broker. This is what game servers interact with to handle matches.

Operations

CatenaAuthentication

CatenaAuthentication

Operations

CatenaSessions

A service that can be used to probe the session store directly for development or diagnostics. Not intended for regular production use!

Operations

CatenaTitles

CatenaTitles

Operations

CatenaServerReleases

CatenaServerManagement

Operations

GetServerManifest Returns a manifest for releases and patches to apply to the server binary

Request

curl -i -X GET \
  https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/server_releases/manifest

Responses

Success

Bodyapplication/json
releasesArray of objects(Services.CatenaServerReleases.ServerRelease)
Response
application/json
{ "releases": [ { … } ] }

AdminCreateServerRelease Creates a game server release

Request

Bodyapplication/json
idstring

game server release id

uristring
bytesinteger(int64)

subject to change: possibly protobuf.bytes type / cant use long, have to use int64 in .proto files

checksumstring

StringValue allows for a field to be nullable

checksumAlgstring

StringValue allows for a field to be nullable

curl -i -X POST \
  https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/server_releases/create_server_release \
  -H 'Content-Type: application/json' \
  -d '{
    "id": "string",
    "uri": "string",
    "bytes": 0,
    "checksum": "string",
    "checksumAlg": "string"
  }'

Responses

Success

Bodyapplication/json
idstring

game server release id

namestring

name of server

Response
application/json
{ "id": "string", "name": "string" }

AdminUpdateServerRelease Updates a game server release

Request

Bodyapplication/json
idstring

game server release id

uristring
bytesinteger(int64)
checksumstring

StringValue allows for a field to be nullable

checksumAlgstring

StringValue allows for a field to be nullable

curl -i -X PUT \
  https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/server_releases/update_server_release \
  -H 'Content-Type: application/json' \
  -d '{
    "id": "string",
    "uri": "string",
    "bytes": 0,
    "checksum": "string",
    "checksumAlg": "string"
  }'

Responses

Success

Bodyapplication/json
idstring

game server release id

Response
application/json
{ "id": "string" }

AdminDeleteServerRelease Deletes a game server release

Request

Query
idstring
curl -i -X DELETE \
  'https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/server_releases/delete_server_release?id=string'

Responses

Success

Bodyapplication/json
serverReleaseDeletedboolean
Response
application/json
{ "serverReleaseDeleted": true }

AdminCreateServerPatch Creates a game server patch

Request

Bodyapplication/json
idstring

game server release id

uristring
bytesinteger(int64)

subject to change: possibly protobuf.bytes type / cant use long, have to use int64 in .proto files

checksumstring

StringValue allows for a field to be nullable

checksumAlgstring

StringValue allows for a field to be nullable

curl -i -X POST \
  https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/server_releases/create_server_patch \
  -H 'Content-Type: application/json' \
  -d '{
    "id": "string",
    "uri": "string",
    "bytes": 0,
    "checksum": "string",
    "checksumAlg": "string"
  }'

Responses

Success

Bodyapplication/json
idstring

patch id

Response
application/json
{ "id": "string" }

AdminUpdateServerPatch Updates a game server patch

Request

Bodyapplication/json
idstring

game patch id

gameServerReleaseIdstring

game server release id

uristring
bytesinteger(int64)
checksumstring

StringValue allows for a field to be nullable

checksumAlgstring

StringValue allows for a field to be nullable

curl -i -X PUT \
  https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/server_releases/update_server_patch \
  -H 'Content-Type: application/json' \
  -d '{
    "id": "string",
    "gameServerReleaseId": "string",
    "uri": "string",
    "bytes": 0,
    "checksum": "string",
    "checksumAlg": "string"
  }'

Responses

Success

Bodyapplication/json
idstring

game patch id

Response
application/json
{ "id": "string" }

AdminDeleteServerPatch deletes a game server patch

Request

Query
idstring
curl -i -X DELETE \
  'https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/server_releases/delete_server_patch?id=string'

Responses

Success

Bodyapplication/json
serverDeletedboolean
Response
application/json
{ "serverDeleted": true }

CatenaPlatformAuth

A service for managing Catena-authoritative functionality with regards to validation and authentication. Used by validators in the Authentication service that log the user into the Catena platform.

Operations

CatenaParties

CatenaParties

Operations

CatenaNodeInspection

A service that can be used inspect the Catena node.

Operations

CatenaNodeControl

A service that can be used control the Catena node.

Operations

CatenaMatchBroker

An integrated match broker service which sits between the matchmaker, clients, and game servers/hosting to coordinate capacity and notify clients when servers are ready to accept connections. This implementation integrates the broker and capacity/server manager roles.

Operations

CatenaFriends

CatenaFriends

Operations

Events

Events

Operations

CatenaEntitlements

Operations

CatenaLeaderboards

Operations

CatenaMatchmaking

Operations

CatenaServerCatalog

Operations

CatenaSteamDiag

Operations