Updates a feature with the given data Does not support editing labels Supported Fields:
| FieldName |
|---|
| name |
| parentFeatureId (use "ROOT" to move to base of feature tree |
PUT
/v1/feature/{featureId}
curl \
--request PUT 'https://api.aptrinsic.com/v1/feature/{featureId}' \
--header "Content-Type: application/json" \
--data '{"id":"string","name":"string","type":"FEATURE","parentFeatureId":"string","propertyKey":"string","status":"ACTIVATED","featureLabels":[{"id":"string","name":"string","color":"string"}]}'
Request examples
{
"id": "string",
"name": "string",
"type": "FEATURE",
"parentFeatureId": "string",
"propertyKey": "string",
"status": "ACTIVATED",
"featureLabels": [
{
"id": "string",
"name": "string",
"color": "string"
}
]
}
Response examples (204)
{
"body": {},
"statusCode": "100",
"statusCodeValue": 42
}