Create a feature

Creates a new feature.

POST/v3/features
JWT
feature:write

Request Body Schema

PropertyTypeDescriptionConstraints
name*stringmin: 1, max: 256
displayName*stringmin: 1, max: 256
descriptionstringmin: 0, max: 256

Request Example

{
  "name": "string",
  "displayName": "string",
  "description": "string"
}
Triggers webhook: feature.created
POST <your-webhook-url>
{
  "event": "feature.created",
  "data": {
    "id": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z",
    "name": "string",
    "displayName": "string",
    "description": "string"
  },
  "triggeredAt": "string"
}

Responses

201 Created
{
  "id": "string",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z",
  "name": "string",
  "displayName": "string",
  "description": "string"
}