getEpic
Description
Retrieves information about a specific epic, which is a larger work item that often encompasses multiple user stories or tasks, helping to organize and track complex projects.
Parameters
Return Type
The epic structure
Example
JEpic epic = getEpic("TEST-1");
runnerLog("Id: " + epic.id);
runnerLog("Name: " + epic.name);
runnerLog("Summary: " + epic.summary);
See also
Peacock