GET api/v1/GetMyPortfolio
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of MyPortfolioResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Eventid | integer |
None. |
|
| Eventname | string |
None. |
|
| Cover | string |
None. |
|
| picturecount | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Eventid": 1,
"Eventname": "sample string 2",
"Cover": "sample string 3",
"picturecount": 4
},
{
"Eventid": 1,
"Eventname": "sample string 2",
"Cover": "sample string 3",
"picturecount": 4
}
]
application/xml, text/xml
Sample:
<ArrayOfMyPortfolioResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppBridge">
<MyPortfolioResponse>
<Cover>sample string 3</Cover>
<Eventid>1</Eventid>
<Eventname>sample string 2</Eventname>
<picturecount>4</picturecount>
</MyPortfolioResponse>
<MyPortfolioResponse>
<Cover>sample string 3</Cover>
<Eventid>1</Eventid>
<Eventname>sample string 2</Eventname>
<picturecount>4</picturecount>
</MyPortfolioResponse>
</ArrayOfMyPortfolioResponse>