Jira Flow›Remove Jira Issue
Jira Flow
Remove Jira Issue
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.
Response
application/jsonOK
messagestring
Example: "Jira Issue unlinked successfully"
typestring
Example: "Success"
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"
}