Zephyr: Create Test Cycle Web Link
zephyr_create_test_cycle_web_linkAdd a web link to a Zephyr test cycle by providing the cycle identifier, URL, and description.
Instructions
Create a new Web Link for a Test Cycle in Zephyr
Toolset: Test Cycles
Examples:
Create a link between the specified test cycle by Id '100001' and generic URL 'https://www.atlassian.com' with description 'Atlassian homepage'
{
"testCycleIdOrKey": "100001",
"url": "https://www.atlassian.com",
"description": "Atlassian homepage"
}Expected Output: The newly created Web Link with its ID and self link
Create a web link for test cycle 'SA-R15' pointing to url: 'https://atlassian.com' with description 'Atlassian homepage'
{
"testCycleIdOrKey": "SA-R15",
"url": "https://atlassian.com",
"description": "Documentation for pump specifications"
}Expected Output: The newly created Web Link with its ID and self link
Attach a documentation link 'https://docs.atlassian.com' to test cycle MM2-R15 for pump specifications
{
"testCycleIdOrKey": "10001",
"url": "https://docs.atlassian.com",
"description": "Documentation for pump specifications"
}Expected Output: The newly created Web Link with its ID and self link
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | The web link URL | |
| description | No | The web link description | |
| testCycleIdOrKey | Yes | The ID or key of the test cycle. |