action appcenter_errors_get_retention_settings { label: "gets the retention settings in days" description: "gets the retention settings in days" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/errors/retention_settings" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { type: "object" required: ["retention_in_days"] properties: { retention_in_days: { type: "integer" enum: [28] } } } }