Hi,
In the other post I should have explained that the data from Jira (or any other integration supported via API) is not automatically synced. (I’ll add the info in the other post as well.)
To fetch data that is stored in Jira (that is the key, status, summary,…), you can execute the following request:
# integration_id from Testiny
# project_id from Testiny
# ids are the workitem ids from Testiny (pass multiple ids at once to reduce number of requests)
GET /workitem-integration/workitems?integration_id=123&project_id=1&sync=true&ids=10,11,12,13
This request fetches the work items with the specified ids and also fetches the information from the Jira API in the background. This request returns the up-to-date information from Jira (like status and summary).
So, if, for example, you fetch a test case and its linked requirements (as described in this post), you can continue working with the data in two ways (depending on your use case):
- Fetch the Jira issue data via the above request using Testiny’s workitem ids
- Or fetch the Jira issue data via the Jira API using the Jira issue ID (which is the workitem_api_id in Testiny) (or do any other action available in the Jira API)
I hope this solves your issue/use case and I’m sorry for the confusion.
If you can/want to share more information about your use case, we’re happy to assist you.
Best regards,
Hanna