To create a feature, use the following request:
POST /products/product_id/features
where:
- product_id (integer) is the product ID.
Request JSON Objects
Valid JSON parameters include the following.
Parameter | Type | Required | Definition |
|---|---|---|---|
name | string | Yes | Feature name |
Example request
POST /products/1/features HTTP/1.1
Content-Type: application/json
Authorization: Bearer f794846b7c26621688e1e06164975b4eae8ce2f6
{
"name": "Basic"
}
Response
The LAC REST API returns the standard HTTP response codes described in the following table.
| Status Code | Description |
|---|---|
| 200 OK | Feature created. |
| Invalid data. | |
| 403 Forbidden | Invalid or expired token provided. |
| 404 Not Found | Product ID does not exist. |
Example Response
HTTP/1.1 200 OK
Content-Type: application/json
{
"id": "1",
"name": "Basic"
}