action appcenter_code_push_deployments_get { label: "codePushDeployments_get" description: "Gets a CodePush Deployment for the given app" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/deployments/{deployment_name}" 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: "object" required: ["name"] properties: { key: { type: "string" } latest_release: { type: "object" } name: { type: "string" } } } }