Skip to content

Report download of a release bundle (canonical)

POST
/v1/public/aether/report_status/download
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.

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

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