For AI agents and LLMs: a machine-readable index is available at llms.txt. A plain-Markdown version of any documentation page is available by appending .md to its URL.
Skip to main content
Jira FlowGet All Jira Issues By TestCaseID
TestMu AI
StatusCommunityBlog
Jira Flow

Get All Jira Issues By TestCaseID

Get All Jira Issues By TestCaseID

GET
/api/v1/jira/{test_case_id}
Get All Jira Issues By TestCaseID
curl --request GET \
--url "https://test-manager-api.lambdatest.com/api/v1/jira/{test_case_id}" \
--header "Authorization: Basic <encoded-value>"
{
"data": [
{
"id": "test_case_id",
"organization_id": 33275539,
"created_at": "2024-02-28T07:13:52Z",
"updated_at": "2024-02-28T07:13:52Z",
"entity_id": "entity_id",
"entity_type": "test_case",
"project_id": "project_id",
"jira_id": "jira_id",
"jira_link": "jira_link",
"created_by": 862914,
"updated_by": 862914,
"deleted_at": null
}
]
}

Authorizations

Authorizationstringheaderrequired

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

Path Parameters

test_case_idstringrequired

Response

application/json

OK

dataobject[]
data.idstring
Example: "test_case_id"
data.organization_idnumber
Example: 33275539
data.created_atstring
Example: "2024-02-28T07:13:52Z"
data.updated_atstring
Example: "2024-02-28T07:13:52Z"
data.entity_idstring
Example: "entity_id"
data.entity_typestring
Example: "test_case"
data.project_idstring
Example: "project_id"
data.jira_idstring
Example: "jira_id"
data.jira_linkstring
Example: "jira_link"
data.created_bynumber
Example: 862914
data.updated_bynumber
Example: 862914
data.deleted_atnull
Get All Jira Issues By TestCaseID
curl --request GET \
--url "https://test-manager-api.lambdatest.com/api/v1/jira/{test_case_id}" \
--header "Authorization: Basic <encoded-value>"
{
"data": [
{
"id": "test_case_id",
"organization_id": 33275539,
"created_at": "2024-02-28T07:13:52Z",
"updated_at": "2024-02-28T07:13:52Z",
"entity_id": "entity_id",
"entity_type": "test_case",
"project_id": "project_id",
"jira_id": "jira_id",
"jira_link": "jira_link",
"created_by": 862914,
"updated_by": 862914,
"deleted_at": null
}
]
}