# Defect Tracker Options

## DefectTracker

<mark style="color:green;">`GET`</mark> `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 %}

<mark style="color:green;">`POST`</mark> `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 %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.bugsplat.com/introduction/development/web-services/defect-tracker-options.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
