Apps documentation
Requirements and Test Management for Jira
Cloud Server/Data Center
Requirements and Test Management for Jira

Cloud

Server/Data Center

Documentation
FAQ
Release notes
Articles & Videos
Last updated Mar 5, 2021

Requirements

Requirements module gathers the descriptions and expectations of all the functionalities which the final product must fulfill in order to be considered useful and ready for release.

Operation SET - generates an exact set of links indicated in the payload

{
  "coveredTestCases": {
    "set": [
      {
        "testKey": "{{TcTestKey2}}"
      }
    ]
  }
}

Operation ADD - adds links indicated in the payload

{
  "coveredTestCases": {
    "add": [
      {
        "testKey": "{{TcTestKey2}}"
      }
    ]
  }
}

Operation REMOVE - deletes links indicated in the payload

{
  "coveredTestCases": {
    "remove": [
      {
        "testKey": "{{TcTestKey2}}"
      }
    ]
  }
}
Note

In case of leaving the SET/ADD/REMOVE playload empty, the set operation will be applied. It means that:

  • links which are not defined in the new playload will be removed
  • existing links will stay the same
  • new links will be added.