action appcenter_bugtracker_get_settings { label: "bugtracker_getSettings" description: "Get bug tracker settings for a particular app" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/bugtracker" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { description: "Alerting bugtracker resource" properties: { event_types: { type: "array" description: "Event types enabled for bugtracker" items: { type: "string" description: "Alerting EventTypes enum" enum: ["newCrashGroupCreated", "newAppReleased"] } } settings: { type: "object" description: "Bugtracker specific settings" required: ["owner_name", "type"] properties: { callback_url: { type: "string" } owner_name: { type: "string" } type: { type: "string" description: "type of bugtracker" enum: ["github", "vsts", "jira"] } } } state: { type: "string" description: "bugtracker state" enum: ["enabled", "disabled", "unauthorized"] } token_id: { type: "string" description: "ID of OAuth token" } type: { type: "string" description: "type of bugtracker" enum: ["github", "vsts", "jira"] } } } }