Update one 'AutomationTestCase' entity
PUT/atm-testcase/:id
Update a single existing 'AutomationTestCase' entity. Returns a full updated entity including (optional) modification metadata.
Request
Path Parameters
The id tof the object to update
Query Parameters
Forces the update even if '_etag' is missing or not matching.
- application/json
Body
required
The unique entity id - must be a positive integer
A descriptive title for this entity or mapping (1 to 1000 characters)
A Descriptive Title
The project id this entity or mapping belongs to
A list of tags for this entity
important,release,smoketest
The atm_source_id property
A unique key for test case for matching on import
XYZ-123
The folder_path property
The steps property
An optional description for the test case (can be a rich text document)
Responses
- 200
- 4XX
- 5XX
Returns a single AutomationTestCase
- application/json
- Schema
- Example (from schema)
Schema
The unique entity id - must be a positive integer
A descriptive title for this entity or mapping (1 to 1000 characters)
A Descriptive Title
The project id this entity or mapping belongs to
A list of tags for this entity
important,release,smoketest
The atm_source_id property
A unique key for test case for matching on import
XYZ-123
The folder_path property
The steps property
An optional description for the test case (can be a rich text document)
{
"id": 0,
"title": "A Descriptive Title",
"project_id": 0,
"tags": "important,release,smoketest",
"atm_source_id": 0,
"atm_key": "XYZ-123",
"folder_path": "string",
"steps": [
null
],
"description": ""
}
The request failed because invalid request parameters or data were supplied or access was denied.
- application/json
- Schema
- Example (from schema)
Schema
The error code describing the general error category.
API_INVALID_INPUT_DATA
The HTTP status code.
The actual error message describing the error in more detail.
The request id for following up on specific errors.
{
"code": "API_INVALID_INPUT_DATA",
"status": 0,
"message": "string",
"reqid": "string"
}
The request failed because an error occurred during processing of the request.
- application/json
- Schema
- Example (from schema)
Schema
The error code describing the general error category.
API_INVALID_INPUT_DATA
The HTTP status code.
The actual error message describing the error in more detail.
The request id for following up on specific errors.
{
"code": "API_INVALID_INPUT_DATA",
"status": 0,
"message": "string",
"reqid": "string"
}