action appcenter_notifications_get_app_email_settings { label: "notifications_getAppEmailSettings" description: "Get Email notification settings of user for a particular app" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/notifications/emailSettings" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { type: "object" description: "Alerting Email Settings of the user for a particular app" required: ["user_enabled"] } }