PUT api/Content/v3/GetFestivals
Request Information
URI Parameters
None.
Body Parameters
FestivalRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| SectionId | integer |
None. |
|
| LanguageId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": 1,
"SectionId": 2,
"LanguageId": 3
}
application/xml, text/xml
Sample:
<FestivalRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/"> <CustomerId>1</CustomerId> <LanguageId>3</LanguageId> <SectionId>2</SectionId> </FestivalRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
FestivalResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Festivals | Collection of Festival |
None. |
Response Formats
application/json, text/json
Sample:
{
"Festivals": [
{
"Id": 1,
"Title": "sample string 2",
"Logo": "sample string 3",
"RedirectToDetail": true,
"EventDates": [
"2026-01-16T04:32:14.1142862+00:00",
"2026-01-16T04:32:14.1142862+00:00"
],
"LocationTitle": "sample string 5",
"EventCount": 6,
"EventMonthYear": "2026-01-16T04:32:14.1142862+00:00",
"TicketUrl": "sample string 8"
},
{
"Id": 1,
"Title": "sample string 2",
"Logo": "sample string 3",
"RedirectToDetail": true,
"EventDates": [
"2026-01-16T04:32:14.1142862+00:00",
"2026-01-16T04:32:14.1142862+00:00"
],
"LocationTitle": "sample string 5",
"EventCount": 6,
"EventMonthYear": "2026-01-16T04:32:14.1142862+00:00",
"TicketUrl": "sample string 8"
}
]
}
application/xml, text/xml
Sample:
<FestivalResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
<Festivals>
<Festival>
<EventCount>6</EventCount>
<EventDates xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:dateTime>2026-01-16T04:32:14.1142862+00:00</d4p1:dateTime>
<d4p1:dateTime>2026-01-16T04:32:14.1142862+00:00</d4p1:dateTime>
</EventDates>
<EventMonthYear>2026-01-16T04:32:14.1142862+00:00</EventMonthYear>
<Id>1</Id>
<LocationTitle>sample string 5</LocationTitle>
<Logo>sample string 3</Logo>
<RedirectToDetail>true</RedirectToDetail>
<TicketUrl>sample string 8</TicketUrl>
<Title>sample string 2</Title>
</Festival>
<Festival>
<EventCount>6</EventCount>
<EventDates xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:dateTime>2026-01-16T04:32:14.1142862+00:00</d4p1:dateTime>
<d4p1:dateTime>2026-01-16T04:32:14.1142862+00:00</d4p1:dateTime>
</EventDates>
<EventMonthYear>2026-01-16T04:32:14.1142862+00:00</EventMonthYear>
<Id>1</Id>
<LocationTitle>sample string 5</LocationTitle>
<Logo>sample string 3</Logo>
<RedirectToDetail>true</RedirectToDetail>
<TicketUrl>sample string 8</TicketUrl>
<Title>sample string 2</Title>
</Festival>
</Festivals>
</FestivalResponse>