POST
/
apiKey
/
v2
/
test-targets
curl --request POST \
  --url https://app.octomind.dev/api/apiKey/v2/test-targets \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "testTarget": {
    "app": "<string>",
    "discoveryUrl": "<string>",
    "skipAutomaticTestCreation": false
  }
}'
[
  {
    "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

X-API-Key
string
header
required

Body

application/json
testTarget
object

Response

200
application/json
OK
id
string
app
string

The app name or project name of the test target

tags
(string | null)[]
environments
object[]

The environments of the test target

skipAutomaticTestCreation
boolean
default:false

Skip automatic test creation right after the test target is created