GET api/Partner/GetEventPic/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of PartnerEventPhoto| Name | Description | Type | Additional information |
|---|---|---|---|
| epid | integer |
None. |
|
| eid | string |
None. |
|
| filename | string |
None. |
|
| photopath | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"epid": 1,
"eid": "sample string 2",
"filename": "sample string 3",
"photopath": "sample string 4"
},
{
"epid": 1,
"eid": "sample string 2",
"filename": "sample string 3",
"photopath": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfPartnerEventPhoto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JankariPortalPIFAPI.Models">
<PartnerEventPhoto>
<eid>sample string 2</eid>
<epid>1</epid>
<filename>sample string 3</filename>
<photopath>sample string 4</photopath>
</PartnerEventPhoto>
<PartnerEventPhoto>
<eid>sample string 2</eid>
<epid>1</epid>
<filename>sample string 3</filename>
<photopath>sample string 4</photopath>
</PartnerEventPhoto>
</ArrayOfPartnerEventPhoto>