POST api/pro/product-addons/{id}
Creates a new pro ProductAddon.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Id of product addon |
string |
Required |
Body Parameters
The Add ProductAddon request.
AddProductAddonRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
Required |
|
| IsFree | boolean |
Required |
|
| Libraries | Collection of string |
None. |
|
| Archived | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"IsFree": true,
"Libraries": [
"sample string 1",
"sample string 2"
],
"Archived": true
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.