Report download of a release bundle (canonical)
POST
/v1/public/aether/report_status/download
const url = 'https://api.aetherpush.com/v1/public/aether/report_status/download';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"deployment_key":"example","label":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.aetherpush.com/v1/public/aether/report_status/download \ --header 'Content-Type: application/json' \ --data '{ "deployment_key": "example", "label": "example" }'Canonical Aether acquisition endpoint. Successor to /v0.1/public/codepush/report_status/download with identical semantics.
Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
Body shape for report_status/download.
object
deployment_key
required
string
label
required
string
key
additional properties
any
Examplegenerated
{ "deployment_key": "example", "label": "example"}Responses
Section titled “Responses”Status accepted.
Media typeapplication/json
Lightweight acknowledgment for status reports. Sent in some legacy code paths.
object
status
string
message
string
key
additional properties
any
Examplegenerated
{ "status": "example", "message": "example"}Missing deployment_key or label, or invalid combination.
Media typeapplication/json
object
error
required
Human-readable error message.
string
requestId
Unique identifier for the request, also exposed as the X-Request-Id response header.
string
Example
{ "error": "The requested resource was not found.", "requestId": "req_abc123"}