POST
/
console
/
v1
/
target_app
curl --request POST \
  --url https://statsigapi.net/console/v1/target_app \
  --header 'Content-Type: application/json' \
  --header 'STATSIG-API-KEY: <api-key>' \
  --data '{
  "name": "string",
  "description": "a description",
  "gates": [
    "<string>"
  ],
  "dynamicConfigs": [
    "<string>"
  ],
  "experiments": [
    "<string>"
  ]
}'
{
  "name": "Target app 1",
  "description": "Example description",
  "gates": [
    "Example gate"
  ],
  "dynamicConfigs": [
    "Example dynamic config"
  ],
  "experiments": [
    "Example experiment"
  ]
}

Authorizations

STATSIG-API-KEY
string
header
required

Headers

x-respect-review-settings
string

Optional header to respect review settings for mutation endpoints.

Body

application/json
name
string
required

name of the target app

Example:

"string"

description
string
required

a description of the target app

Example:

"a description"

gates
string[]

Gate IDs to assign to target app(s)

dynamicConfigs
string[]

Dynamic Config IDs to assign to target app(s)

experiments
string[]

Experiment IDs to assign to target app(s)

Response

200 - application/json
Create Target App Success
message
string
required

A simple string explaining the result of the operation.

data
object
required

A single result.