Test targets
Update a test target
Test targets
Environments
Reports
Notifications
Private locations
Discoveries
Test targets
Update a test target
Updates a test target by ID.
PATCH
/
apiKey
/
v2
/
test-targets
/
{testTargetId}
curl --request PATCH \
--url https://app.octomind.dev/api/apiKey/v2/test-targets/{testTargetId} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"app": "<string>",
"discoveryUrl": "<string>",
"skipAutomaticTestCreation": true,
"testIdAttribute": "test-automation-id",
"testRailIntegration": {
"domain": "https://mycompany.testrail.io",
"username": "user",
"projectId": "123",
"apiKey": "123123123"
},
"timeoutPerStep": 17500
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"app": "<string>",
"tags": [
"<string>"
],
"environments": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "DEFAULT",
"discoveryUrl": "https://example.com",
"email": "[email protected]"
}
],
"skipAutomaticTestCreation": false
}
Authorizations
Path Parameters
ID of the test target to update
Body
application/json
Response
200
application/json
OK
The response is of type object
.
curl --request PATCH \
--url https://app.octomind.dev/api/apiKey/v2/test-targets/{testTargetId} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"app": "<string>",
"discoveryUrl": "<string>",
"skipAutomaticTestCreation": true,
"testIdAttribute": "test-automation-id",
"testRailIntegration": {
"domain": "https://mycompany.testrail.io",
"username": "user",
"projectId": "123",
"apiKey": "123123123"
},
"timeoutPerStep": 17500
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"app": "<string>",
"tags": [
"<string>"
],
"environments": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "DEFAULT",
"discoveryUrl": "https://example.com",
"email": "[email protected]"
}
],
"skipAutomaticTestCreation": false
}