Description: Deletes a Jira integration.
Security: Requires admin permissions to perform the operation.
Notes: Available from Xray version 3.129 and above.
Usage: DELETE /xray/api/v1/ticketing/jira-integrations/{integrationName}
Consumes: application/json
Produces: application/json
Query Parameters: none
Path Parameters:
Name | Type | Mandatory/Optional | Description |
|---|---|---|---|
| string | Mandatory | The name of the integration to retrieve. |
Response body
Name | Type | Mandatory/Optional | Description |
|---|---|---|---|
| string | Optional | Provides information when the request is successful |
| string | Optional | Contains error details when the request fails (non-200 response) |
Response codes
Status Code | Description |
|---|---|
200 | Integration deleted successfully |
403 | Permission denied |
404 | Integration does not exist |
500 | Failed to delete integration |
Sample Successful Response
200 OK
{
"info": "Integration has been successfully deleted"
}Sample error response
404 Not Found
{
"error": "Integration not found"
}400 Bad Request
{
"error": "Integration name is missing in request"
}