Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 1.4 KB

defect-tracker-options.md

File metadata and controls

48 lines (36 loc) · 1.4 KB
description
To create or update a defect tracker integration, use the following endpoint.

Defect Tracker Options

DefectTracker

GET https://app.bugsplat.com/api/options/defectTracker

Gets the current defect tracking options. The results will vary depending on the defect tracker type.

{% tabs %} {% tab title="200" %}

{status: 'success', 
 database: {database}, 
 defectTracker: {defect tracker type},
 options: {list of all defect tracker-specific options}
}

{% endtab %} {% endtabs %}

POST https://app.bugsplat.com/api/options/defectTracker

Sets defect tracking options. The available fields vary based on the defect tracker type.

Request Body

Name Type Description
defectTracker string Required type of defect tracker. e.g. "Jira", "Azure DevOps", etc
Any defect tracker option name string Optional: Used to change any of the defect tracker options

{% tabs %} {% tab title="200 " %}

{status: 'success', 
 database: {database}, 
 defectTracker: {defect tracker type},
 options: {list of all defect tracker-specific options}
}

{% endtab %} {% endtabs %}