action appcenter_store_notifications_get_notification_by_app_id { label: "storeNotifications_getNotificationByAppId" description: "Application specific store service status" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/store_service_status" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { properties: { service: { type: "string" } status: { type: "string" } valid_until: { type: "integer" } } } }