Test Case
Created Test Case
Payload example:
This event is being sent when a new test case is created.
Event name
case.created
Payload fields
Parameter | Type | Description |
---|---|---|
id | integer | Test case title |
title | string | Test case title |
description | string | Test case description |
preconditions | string | Test case preconditions |
postconditions | string | Test case postconditions |
severity | object | An object of test case severity |
priority | object | An object of test case priority |
type | object | An object of test case type |
status | object | An object of test case status |
automation | object | An object of test case automation status |
behavior | object | An object of test case behavior |
suite_id | integer | Suite ID (nullable) |
milestone_id | integer | Milestone_id (nullable) |
steps | array | An array of test steps objects. |
attachments | array | An array of attachments ids. |
custom_fields | array | An array of custom fields objects. |
Step object
Parameter | Type | Description |
---|---|---|
position | integer | Step position |
action | string | Required field (if shared_step_id is not provided). Can't be empty. |
expected_result | string | |
shared | boolean | Actual status step |
attachments | array | An array of attachments IDs. |
Custom field object
Parameter | Type | Description |
---|---|---|
id | integer | Custom field ID |
title | string | Custom field title |
value | string | Available only for selectbox fields. An object with selectbox values. |
type | string | Custom field type. Available values: |
Cloned Test Case
Payload example:
This event is being sent when a test case is cloned.
Event name
case.cloned
Payload fields
Parameter | Type | Description |
---|---|---|
id | integer | Test case ID (clone) |
from_id | integer | Test case ID (original) |
Updated Test Case
Payload example:
JSON
📘This event is being sent when a test case is updated. It returns only ID of test case and notifies that fields were updated.
Event name
case.updated
Payload fields
Parameter | Type | Description |
---|---|---|
id | integer | Test case ID |
Deleted Test Case
Payload example:
This event is being sent when a test case is deleted.
Event name
case.deleted
Payload fields
Parameter | Type | Description |
---|---|---|
id | integer | Test case ID |
Last updated