Skip to main content
GET
/
releases
/
{release_id}
Get
curl --request GET \
  --url https://{host}/{version}/releases/{release_id} \
  --header 'X-API-Key: <api-key>'
{
  "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