Skip to main content
Jira FlowRemove Jira Issue
TestMu AI
StatusCommunityBlog
Jira Flow

Remove Jira Issue

Remove Jira Issue

POST
/api/v1/jira/remove
Remove Jira Issue
curl --request POST \
--url "https://test-manager-api.lambdatest.com/api/v1/jira/remove" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"project_id": "project_id",
"entity_id": "test_case_id",
"entity_type": "test_case",
"jira_id": "jira_issue_id"
}'
{
"message": "Jira Issue unlinked successfully",
"type": "Success"
}

Authorizations

Authorizationstringheaderrequired

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
project_idstring
entity_idstring
entity_typestring
jira_idstring

Response

application/json

OK

messagestring
Example: "Jira Issue unlinked successfully"
typestring
Example: "Success"
Remove Jira Issue
curl --request POST \
--url "https://test-manager-api.lambdatest.com/api/v1/jira/remove" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"project_id": "project_id",
"entity_id": "test_case_id",
"entity_type": "test_case",
"jira_id": "jira_issue_id"
}'
{
"message": "Jira Issue unlinked successfully",
"type": "Success"
}