GET api/Bundle/{bundleID}
Returns a specific bundle by ID
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
bundleID |
ID of the bundle to retrieve |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Bundle
BundleName | Description | Type | Additional information |
---|---|---|---|
BundleID | integer |
None. |
|
BundleName | string |
None. |
|
ShortDescription | string |
None. |
|
FullDescription | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "BundleID": 1, "BundleName": "sample string 2", "ShortDescription": "sample string 3", "FullDescription": "sample string 4" }
application/xml, text/xml
Sample:
<Bundle xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Yummy.Portal.Models"> <BundleID>1</BundleID> <BundleName>sample string 2</BundleName> <FullDescription>sample string 4</FullDescription> <ShortDescription>sample string 3</ShortDescription> </Bundle>