appflow destination get
[appflow, destination, get]
Get info for a destination in Appflow
appflow destination get [flags]
Examples
appflow destination get --app-id=a1234bc --name="Development"
Flags
Name | Type | Default | Description |
---|---|---|---|
--app-id [required] | string | Appflow app id | |
--name [required] | string | Appflow destination name |
Global Flags
Name | Type | Default | Description |
---|---|---|---|
-h, --help | boolean | false | Print help information for command |
--config | string | Appflow config file (.appflow.yaml by default) | |
--json | boolean | false | For commands with output, shortcut to print as JSON |
--output | string | "text" | For commands with output, print as [json] or human readable [text] |
--token | string | Ionic authorization token |
Outputs
Name | Type | Description |
---|---|---|
name | string | The name of a Destination you've created in Appflow. |
target | string | The target (Apple App Store/Google Play) of your Destination in Appflow. |
artifactType | "APK" | "DSYM" | "XCARCHIVE" | "IPA" | "APP" | "AAB" | "WWW_MANIFEST" | "WWW_MANIFEST_V2" | "WWW_ZIP" | "PNG" | "MP4" | The file type of the artifact that is uploaded to the store destination |
latestDeployment (optional) | object | The latest successful deployment associated with this Channel or Destination. |
.buildId | number | A unique identifier for a build done in Appflow. |
.buildNumber (optional) | number | An app-specific build number for builds done in Appflow. |
.triggeredBy | string | Appflow user that triggered the build associated with this deployment. |
.status | string | The status of this deployment. |
.commitSha (optional) | string | The commit hash. |
.commitAuthor | string | The git user that created the commit associated with this build. |
.commitCreated | string | String of datetime when the commit was created |
.commitBranch | string | The branch on which the commit was created. |
appleAppId | string | Your app's unique identifier in Appflow. |
username | string | The username of the Apple account associated with this Destination. |
teamId (optional) | string | The id of the Apple Developer team associated with this Destination. |
packageName (optional) | string | The package for the Google Play App associated with this Destination. |
track | string | The track for the Google Play App associated with this Destination. |
releaseStatus | string | The release status for the Google Play App associated with this Destination. |
Successful Apple App Store Output
{
"name": "Development",
"target": "Apple App Store",
"artifactType": "IPA",
"latestDeployment": {
"buildId": 123,
"buildNumber": 25,
"triggeredBy": "Jane Doe",
"status": "",
"commitSha": "cef1sdca",
"commitAuthor": "Dominic Ash",
"commitCreated": "2022-12-09T19:38:09Z",
"commitBranch": "main"
},
"appleAppId": "123",
"username": "me@apple.com",
"teamId": "XYZ"
}