Skip to content

Legacy download status report (deprecated)

Deprecated
POST
/reportStatus/download
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.

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"
}

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"
}
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
true
Link
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"
}