Skip to main content
GET
/
releases
/
{release_id}
Python
from miru_server_sdk import Miru

client = Miru(
    api_key="My API Key",
)
release = client.releases.retrieve(
    release_id="rls_123",
)
print(release.id)
{
  "object": "release",
  "id": "rls_123",
  "version": "v1.0.0",
  "created_at": "2024-01-01T00:00:00Z",
  "updated_at": "2024-01-01T00:00:00Z",
  "config_schemas": []
}

Authorizations

X-API-Key
string
header
required

The API key to use for authentication. Retrieve your API key from the Miru dashboard.

Path Parameters

release_id
string
required

The unique identifier of the release.

Example:

"rls_123"

Query Parameters

expand[]
enum<string>[]

The fields to expand in the releases.

Response

200 - application/json

Successfully retrieved the release.

object
enum<string>
required
Available options:
release
Example:

"release"

id
string
required

ID of the release.

Example:

"rls_123"

version
string
required

The version of the release.

Example:

"v1.0.0"

created_at
string<date-time>
required

Timestamp of when the release was created.

Example:

"2024-01-01T00:00:00Z"

updated_at
string<date-time>
required

Timestamp of when the release was last updated.

Example:

"2024-01-01T00:00:00Z"

config_schemas
Config Schema · object[] | null
required

Expand the config schemas using 'expand[]=config_schemas' in the query string.

Example:
[]
I