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

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

catena.catena_friends.CatenaFriends_SendFriendRequest

Request

Bodyapplication/json
receiverAccountIdstring
curl -i -X POST \
  https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/friends/request/send \
  -H 'Content-Type: application/json' \
  -d '{
    "receiverAccountId": "string"
  }'

Responses

Success

Bodyapplication/json
object(Services.CatenaFriends.SendFriendRequestResponse)
Response
application/json
{}

Links two players together as friends

Request

Bodyapplication/json
senderAccountIdstring
curl -i -X POST \
  https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/friends/request/accept \
  -H 'Content-Type: application/json' \
  -d '{
    "senderAccountId": "string"
  }'

Responses

Success

Bodyapplication/json
object(Services.CatenaFriends.AcceptFriendRequestResponse)
Response
application/json
{}

catena.catena_friends.CatenaFriends_DeclineFriendRequest

Request

Bodyapplication/json
senderAccountIdstring
curl -i -X POST \
  https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/friends/request/decline \
  -H 'Content-Type: application/json' \
  -d '{
    "senderAccountId": "string"
  }'

Responses

Success

Bodyapplication/json
object(Services.CatenaFriends.DeclineFriendRequestResponse)
Response
application/json
{}

catena.catena_friends.CatenaFriends_RemoveFriend

Request

Bodyapplication/json
removingAccountIdstring
curl -i -X POST \
  https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/friends/remove \
  -H 'Content-Type: application/json' \
  -d '{
    "removingAccountId": "string"
  }'

Responses

Success

Bodyapplication/json
object(Services.CatenaFriends.RemoveFriendResponse)
Response
application/json
{}

catena.catena_friends.CatenaFriends_GetOutgoingPendingRequests

Request

Bodyapplication/json
limitinteger(int32)
offsetinteger(int32)
curl -i -X POST \
  https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/friends/request/outgoing \
  -H 'Content-Type: application/json' \
  -d '{
    "limit": 0,
    "offset": 0
  }'

Responses

Success

Bodyapplication/json
outgoingFriendsArray of objects(Services.CatenaFriends.FriendRequest)
Response
application/json
{ "outgoingFriends": [ {} ] }

catena.catena_friends.CatenaFriends_GetIncomingPendingRequests

Request

Bodyapplication/json
limitinteger(int32)
offsetinteger(int32)
curl -i -X POST \
  https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/friends/request/incoming \
  -H 'Content-Type: application/json' \
  -d '{
    "limit": 0,
    "offset": 0
  }'

Responses

Success

Bodyapplication/json
incomingFriendsArray of objects(Services.CatenaFriends.FriendRequest)
Response
application/json
{ "incomingFriends": [ {} ] }

catena.catena_friends.CatenaFriends_GetFriendsList

Request

Bodyapplication/json
limitinteger(int32)
offsetinteger(int32)
curl -i -X POST \
  https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/friends/get \
  -H 'Content-Type: application/json' \
  -d '{
    "limit": 0,
    "offset": 0
  }'

Responses

Success

Bodyapplication/json
friendsArray of objects(Services.CatenaFriends.Friend)
Response
application/json
{ "friends": [ {} ] }

catena.catena_friends.CatenaFriends_AdminRemovePendingFriendRequest

Request

Bodyapplication/json
senderAccountIdstring
receiverAccountIdstring
curl -i -X POST \
  https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/admin/friends/remove-pending \
  -H 'Content-Type: application/json' \
  -d '{
    "senderAccountId": "string",
    "receiverAccountId": "string"
  }'

Responses

Success

Bodyapplication/json
object(Services.CatenaFriends.AdminRemovePendingFriendRequestResponse)
Response
application/json
{}

catena.catena_friends.CatenaFriends_AdminRemoveFriend

Request

Bodyapplication/json
accountId1string
accountId2string
curl -i -X POST \
  https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/admin/friends/remove \
  -H 'Content-Type: application/json' \
  -d '{
    "accountId1": "string",
    "accountId2": "string"
  }'

Responses

Success

Bodyapplication/json
object(Services.CatenaFriends.AdminRemoveFriendResponse)
Response
application/json
{}

catena.catena_friends.CatenaFriends_AdminGetFriendsList

Request

Bodyapplication/json
accountIdstring
limitinteger(int32)
offsetinteger(int32)
curl -i -X POST \
  https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/admin/friends/get \
  -H 'Content-Type: application/json' \
  -d '{
    "accountId": "string",
    "limit": 0,
    "offset": 0
  }'

Responses

Success

Bodyapplication/json
friendsArray of objects(Services.CatenaFriends.Friend)
Response
application/json
{ "friends": [ {} ] }

Events

Events

Operations

CatenaEntitlements

Operations

CatenaLeaderboards

Operations

CatenaMatchmaking

Operations

CatenaServerCatalog

Operations

CatenaSteamDiag

Operations