Legacy download status report (deprecated)
Deprecated
POST
/reportStatus/download
const url = 'https://api.aetherpush.com/reportStatus/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/reportStatus/download \ --header 'Content-Type: application/json' \ --data '{ "deployment_key": "example", "label": "example" }'Legacy alias for /v0.1/public/codepush/report_status/download.
Identical semantics. Kept for backward compatibility with
react-native-code-push@<7.
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"}Headers
Section titled “Headers”Deprecation
string
Present on legacy acquisition endpoints. Signals the endpoint is
deprecated in favor of its canonical /v1/public/aether/* successor.
The value is the string true.
Example
trueLink
string
RFC 8288 link header with two link values: the canonical successor endpoint via rel=“successor-version”, and the CodePush migration guide via rel=“deprecation”.
Example
</v1/public/aether/update_check>; rel="successor-version", <https://docs.aetherpush.com/migration/codepush/>; rel="deprecation"Missing or invalid fields.
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"}