Status API
You can query the status of an upload using the following CLI command:
dcd status --apiKey <key> --upload-id <uuid>Or using the upload name:
dcd status --apiKey <key> --name "Upload 123"Note: if you have multiple uploads with the same name, it will return the latest result only.
Example output:
π Upload Status
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Status: FAILED
π Upload ID: 7e12345f-eb12-12ec-a30b-bb1234f1d12a
π± Binary ID: 67894274-b789-4c1e-80d4-da8998998999
π Console: https://console.devicecloud.dev/results?upload=7e12345f-eb12-12ec-a30b-bb1234f1d12a&result=4500
π Test Results
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β ./login-test/onboarding.yaml
Status: FAILED
Fail reason: Error: Element not found: Text matching regex next.* not found
Duration: 32s
JSON Output
Use the --json flag to trigger machine interpretable output:
Example output:
This can be interpreted by command line tools such as jq to pull out values.
For example, to extract the app binary ID and save it to a local ENV var:
Last updated
Was this helpful?