Skip to main content

appflow live-update channel-details

[appflow, live-update, channel-details]

Get details about a Live Update channel for the specified app

appflow live-update channel-details [flags]

Examples

appflow live-update channel-details --app-id=b3456cd --name=Production

Flags

NameTypeDefaultDescription
--app-id [required]stringAppflow app id
--name [required]stringLive Update channel name

Global Flags

NameTypeDefaultDescription
-h, --helpbooleanfalsePrint help information for command
--configstringAppflow config file (.appflow.yaml by default)
--jsonbooleanfalseFor commands with output, shortcut to print as JSON
--outputstring"text"For commands with output, print as [json] or human readable [text]
--tokenstringIonic authorization token

Outputs

NameTypeDescription
namestringThe name of a channel that hosts Live Updates.
latestDeployment (optional)objectA last deployment made to this Live Update channel.
.buildIdnumberA unique identifier for a build done in Appflow.
.buildNumber (optional)numberAn app-specific build number for builds done in Appflow.
.triggeredBystringAppflow user that triggered the build associated with this deployment.
.statusstringThe status of this deployment.
.commitSha (optional)stringThe commit hash.
.commitAuthorstringThe git user that created the commit associated with this build.
.commitCreatedstringString of datetime when the commit was created
.commitBranchstringThe branch on which the commit was created.
{
"name": "Production",
"latestDeployment": {
"buildId": 6010455,
"buildNumber": 25,
"triggeredBy": "Michael",
"status": "SUCCESS",
"commitSha": "cef1sdca",
"commitAuthor": "Michael",
"commitCreated": "2023-04-06T18:42:06.503109+00:00",
"commitBranch": "main"
}
}