PUT api/v1/product/{productId}/{versionId}/{release}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
productId | integer |
Required |
|
versionId | integer |
Required |
|
release | date |
Required |
Body Parameters
ProductEntitiesModelName | Description | Type | Additional information |
---|---|---|---|
ProductId | integer |
Range: inclusive between 1 and 2147483647 |
|
VersionId | integer |
Range: inclusive between 1 and 2147483647 |
|
Entities | Collection of integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "ProductId": 1, "VersionId": 2, "Entities": [ 1, 2 ] }
application/xml, text/xml
Sample:
<ProductEntitiesModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bullet.WebAPI.Models.DTO"> <Entities xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:int>1</d2p1:int> <d2p1:int>2</d2p1:int> </Entities> <ProductId>1</ProductId> <VersionId>2</VersionId> </ProductEntitiesModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.