Jira Flow›Link Jira Issue
Jira Flow
Link Jira Issue
Link Jira Issue
curl --request POST \
--url "https://test-manager-api.lambdatest.com/api/v1/jira" \
--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": "org_id:jira_issue_id"
}'
{
"message": "Jira Issue linked 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 linked successfully"
typestring
Example: "Success"
curl --request POST \
--url "https://test-manager-api.lambdatest.com/api/v1/jira" \
--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": "org_id:jira_issue_id"
}'
{
"message": "Jira Issue linked successfully",
"type": "Success"
}