POST api/pro/products/{id}
Creates a new zyto-pro Product.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Id of the Product |
string |
Required |
Body Parameters
The create Product request.
AddProductRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
Required |
|
| Libraries | Collection of string |
None. |
|
| DefaultProductAddonIds | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"Libraries": [
"sample string 1",
"sample string 2"
],
"DefaultProductAddonIds": [
"sample string 1",
"sample string 2"
]
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Returns the new Product id.
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.