Skip to main content
GET
/
api
/
v1
/
engines
/
{engine_slug}
/
versions
/
{version}
Get engine version
curl --request GET \
  --url https://api.usenexio.com/api/v1/engines/{engine_slug}/versions/{version} \
  --header 'Authorization: Bearer <token>'
{
  "version": "<string>",
  "released_at": "2023-11-07T05:31:56Z",
  "changelog": "<string>",
  "is_breaking_from_previous_major": true,
  "published_by": "<string>"
}

Authorizations

Authorization
string
header
required

API key with environment prefix. Use nx_test_... for sandbox and nx_live_... for production. Obtain keys at platform.usenexio.com/settings/api-keys.

Path Parameters

engine_slug
string
required

Engine identifier slug (e.g. default).

version
string
required
Pattern: ^\d+\.\d+$

Response

Single version row.

version
string
required

Two-tier major.minor identifier (e.g. 1.0, 1.3, 2.0).

Pattern: ^\d+\.\d+$
released_at
string<date-time>
required

When the version row was created.

changelog
string
required

Operator-supplied human-readable summary of what changed.

is_breaking_from_previous_major
boolean
required

True only when this is a *.0 row AND a prior major ((major-1).*) also exists for the same engine. The first-ever release of an engine reports false.

published_by
string

Actor recorded at publish: a dashboard user ID for dashboard publishes, api_key:<id> for API publishes. Omitted on backfilled rows with no recorded actor.