CatenaApiKeys
On the right hand side of this page, you will see a list of "Servers".
To configure which server is shown in example requests:
domain
environment variable.curl -i -X GET \
https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/server_releases/manifest
{ "releases": [ { … } ] }
subject to change: possibly protobuf.bytes type / cant use long, have to use int64 in .proto files
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"
}'
{ "id": "string", "name": "string" }
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"
}'
{ "id": "string" }
curl -i -X DELETE \
'https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/server_releases/delete_server_release?id=string'
{ "serverReleaseDeleted": true }
subject to change: possibly protobuf.bytes type / cant use long, have to use int64 in .proto files
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"
}'
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"
}'
curl -i -X DELETE \
'https://docs.catenatools.com/_mock/apis/catena-tools-core/api/v1/server_releases/delete_server_patch?id=string'
{ "serverDeleted": true }