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 Authorization string header required
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Response 200▼
application/json OK
message string
Example: "Jira Issue linked successfully"
type string
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"
}