Get a paginated, filterable list of release labels
const url = 'https://api.aetherpush.com/v1/apps/example/deployments/example/labels?isMandatory=true&isDisabled=true&releaseMethod=Upload';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api.aetherpush.com/v1/apps/example/deployments/example/labels?isMandatory=true&isDisabled=true&releaseMethod=Upload' \ --header 'Authorization: Bearer <token>'Returns a lightweight, paginated view of release labels. Unlike
/history, this endpoint excludes heavy fields (blobUrl, hashes,
diffPackageMap) and supports filtering by label, appVersion,
releasedBy, description, mandatory/disabled flags, releaseMethod,
and upload-time range. Designed for dashboard release tables.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Query Parameters
Section titled “Query Parameters”Case-insensitive substring match.
Case-insensitive substring match.
Unix timestamp (ms) lower bound, as a string.
Unix timestamp (ms) upper bound, as a string.
Responses
Section titled “Responses”Paginated labels with meta and links.
object
object
object
Number of items in the current page.
object
Example
{ "data": [ { "label": "v3", "releaseMethod": "Upload" } ]}Unauthenticated, or not a collaborator.
object
Human-readable error message.
Unique identifier for the request, also exposed as the X-Request-Id response header.
Example
{ "error": "The requested resource was not found.", "requestId": "req_abc123"}App or deployment not found.
object
Human-readable error message.
Unique identifier for the request, also exposed as the X-Request-Id response header.
Example
{ "error": "The requested resource was not found.", "requestId": "req_abc123"}