ROCKITPLAY API
  1. Installation / Upgrade
ROCKITPLAY API
  • ROCKIT Edge - Admin API
    • Installation / Upgrade
      • get versions
        GET
      • ping
        POST
      • submit test task
        POST
    • Admin Edge Organizations
      • Create Organization
      • Delete Organization
  • ROCKIT Edge - Backend API
    • Backend Edge Organizations
      • Create Organization
      • Delete Organization
    • Authentication
      • user login (user+pw+org)
      • Authentication
    • Account Management
      • get user details
      • list users
      • Modify user
      • delete users
      • Create User / Create Machine User
      • Create User / Create Machine User Copy
    • Deployments
      • Creating Deployments
      • Get Deployments
      • Get Deployment Details
      • Modify Deployment
      • Deleting Deployments
    • Apps
      • Creating Apps
      • Import native builds
      • App Details
      • List Apps
      • Patch App
      • Delete Apps
    • Triggers
      • Process Traces
      • Retry Task
    • Tasks
      • Listing Tasks
      • Task Details
      • Acknowledge Warning / Expire Task
    • Subscriptions
      • Subscribe
      • List Subscriptions
      • Unsubscribe
    • Roles
      • List Roles
      • Create Role
      • Patch Role
      • Role Details
      • Delete Roles
    • API Keys
      • Create API Key
      • Delete API Key
    • Commit
      • Commit
  • Changelog
    • Changelog
  • Schemas
    • Webhook Request Body
    • Import UrlSchema
  1. Installation / Upgrade

get versions

Developing
GET
https://Example-Server.com/srv/v1/versions
Last modified:2026-01-26 14:38:18
This endpoint returns the current version identifiers of ROCKIT Edge and ROCKIT Engine. In order to get a full set of version identifiers please make sure that
1.
you run test tasks on both ROCKIT Edge and Engine using POST /srv/v1/hello with body: { "relay" : true } and
2.
if the OCI stack uses CWLs as HTTP request runtime, wait for the next maintenance cycle to obtain the Fn version.
Troubleshooting
Q: The returned data set does not contain the task group.
A: Submit a relay hello task and try again.
Q: The returned data set contains cwl but no fn group.
A: Please wait for up to 10min and retry.
Q: The returned data set contains fn but no cwl group.
A: The OCI stack currently operates in Fn-only mode.

Request

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://Example-Server.com/srv/v1/versions' \
--header 'x-rockit-admin-token: eyAHFjsnk...'

Responses

🟢200200: success
application/json
Body

Example
{
    "status": "success",
    "versions": {
        "edge": {
            "task": {
                "dxhttp": "not-implemented-yet",
                "src": "cb53b10c98002b6d69b6ee5ee1c37b310e096085"
            },
            "cwl": {
                "src": "cb53b10c98002b6d69b6ee5ee1c37b310e096085"
            },
            "fn": {
                "src": "cb53b10c98002b6d69b6ee5ee1c37b310e096085"
            }
        },
        "engine": {
            "task": {
                "dxhttp": "not-implemented-yet",
                "ib": "ccb851ac698f8f7121e07268f5249357cd3b39e2@2025-11-03_14",
                "rte": "c2b729c08b49fc6efd5dfc57eb438ecf2cb53f52",
                "src": "cab5098528e71234269ee632ce15c4e6a398576a",
                "sx": "cab657f52bba1a97f7594b810e6cbddc8bd0ab27"
            },
            "fn": {
                "src": "cab5098528e71234269ee632ce15c4e6a398576a"
            }
        }
    }
}
🟠401401: unauthorized
Modified at 2026-01-26 14:38:18
Previous
Installation / Upgrade
Next
ping
Built with