action appcenter_code_push_deployment_releases_get { label: "codePushDeploymentReleases_get" description: "Gets the history of releases on a Deployment" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/deployments/{deployment_name}/releases" encoding: json input: { type: "object" properties: { app_name: { type: "string" } deployment_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "deployment_name", "owner_name"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }