GET v1/EventContent/SiteUrls?eventId={eventId}&eventPhase={eventPhase}&parentId={parentId}&showHidden={showHidden}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| eventId | globally unique identifier |
Required |
|
| eventPhase | EventPhase |
Required |
|
| parentId | globally unique identifier |
Required |
|
| showHidden | boolean |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SiteUrl| Name | Description | Type | Additional information |
|---|---|---|---|
| Guid | globally unique identifier |
None. |
|
| Title | string |
None. |
|
| Url | string |
None. |
|
| Contents | string |
None. |
|
| EventContentType | EventContentType |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Guid": "4cce33f9-60d0-4242-9415-14f2c30771bf",
"Title": "sample string 2",
"Url": "sample string 3",
"Contents": "sample string 4",
"EventContentType": 0
},
{
"Guid": "4cce33f9-60d0-4242-9415-14f2c30771bf",
"Title": "sample string 2",
"Url": "sample string 3",
"Contents": "sample string 4",
"EventContentType": 0
}
]
application/octet-stream
Sample:
[{"Guid":"4cce33f9-60d0-4242-9415-14f2c30771bf","Title":"sample string 2","Url":"sample string 3","Contents":"sample string 4","EventContentType":0},{"Guid":"4cce33f9-60d0-4242-9415-14f2c30771bf","Title":"sample string 2","Url":"sample string 3","Contents":"sample string 4","EventContentType":0}]
application/xml, text/xml
Sample:
<ArrayOfSiteUrl xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Interpulse.EventSystem.ViewModels.Services.List">
<SiteUrl>
<Contents>sample string 4</Contents>
<EventContentType>Unassigned</EventContentType>
<Guid>4cce33f9-60d0-4242-9415-14f2c30771bf</Guid>
<Title>sample string 2</Title>
<Url>sample string 3</Url>
</SiteUrl>
<SiteUrl>
<Contents>sample string 4</Contents>
<EventContentType>Unassigned</EventContentType>
<Guid>4cce33f9-60d0-4242-9415-14f2c30771bf</Guid>
<Title>sample string 2</Title>
<Url>sample string 3</Url>
</SiteUrl>
</ArrayOfSiteUrl>