Skip to content

Release API

The Release API manages firmware, software, and service releases across the AmpNexus platform.

Features

  • Release Management - Create, update, and track releases
  • Channel Support - Manage different release channels (stable, rc, develop)
  • Version History - Track release history and metadata
  • CI/CD Integration - Internal API for automated release publishing
  • Quality Metrics - Store test coverage and quality data

Base URL

https://api.ampnexus.app/release/v1

API Reference

Explore the full API specification using the interactive Swagger UI below:

Quick Examples

List Releases

curl -H "Authorization: Bearer YOUR_TOKEN" \
  "https://api.ampnexus.app/release/v1/tenants/{tenant_id}/releases?product=reporting-api"

Get Specific Release

curl -H "Authorization: Bearer YOUR_TOKEN" \
  https://api.ampnexus.app/release/v1/tenants/{tenant_id}/releases/{release_id}

Get Latest Release

curl -H "Authorization: Bearer YOUR_TOKEN" \
  "https://api.ampnexus.app/release/v1/tenants/{tenant_id}/releases/latest?product=reporting-api&channel=stable"