action appcenter_code_push_deployments_list { label: "codePushDeployments_list" description: "Gets a list of CodePush deployments for the given app" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/deployments" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { type: "array" items: { type: "object" required: ["name"] properties: { key: { type: "string" } latest_release: { type: "object" } name: { type: "string" } } } } }