PUT api/Conference/GetBeerStations

Request Information

URI Parameters

None.

Body Parameters

APIBeerStationrequest
NameDescriptionTypeAdditional information
CustomerId

integer

None.

UniqueId

globally unique identifier

None.

UserUniqueId

integer

None.

PageNumber

integer

None.

Type

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "UniqueId": "5f397d4a-d01c-422a-89eb-f84ddbf3bfc6",
  "UserUniqueId": 3,
  "PageNumber": 4,
  "Type": 5
}

application/xml, text/xml

Sample:
<APIBeerStationrequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <CustomerId>1</CustomerId>
  <PageNumber>4</PageNumber>
  <Type>5</Type>
  <UniqueId>5f397d4a-d01c-422a-89eb-f84ddbf3bfc6</UniqueId>
  <UserUniqueId>3</UserUniqueId>
</APIBeerStationrequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of APIBeerStationResponse
NameDescriptionTypeAdditional information
Id

integer

None.

StationName

string

None.

BoothNumber

string

None.

BeerId

integer

None.

BeerName

string

None.

ServeDate

date

None.

TimeTo

string

None.

TimeFrom

string

None.

CompanyName

string

None.

IsAlreadyInFav

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "StationName": "sample string 2",
    "BoothNumber": "sample string 3",
    "BeerId": 4,
    "BeerName": "sample string 5",
    "ServeDate": "2025-08-28T22:20:40.7211495+00:00",
    "TimeTo": "sample string 7",
    "TimeFrom": "sample string 8",
    "CompanyName": "sample string 9",
    "IsAlreadyInFav": true
  },
  {
    "Id": 1,
    "StationName": "sample string 2",
    "BoothNumber": "sample string 3",
    "BeerId": 4,
    "BeerName": "sample string 5",
    "ServeDate": "2025-08-28T22:20:40.7211495+00:00",
    "TimeTo": "sample string 7",
    "TimeFrom": "sample string 8",
    "CompanyName": "sample string 9",
    "IsAlreadyInFav": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfAPIBeerStationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <APIBeerStationResponse>
    <BeerId>4</BeerId>
    <BeerName>sample string 5</BeerName>
    <BoothNumber>sample string 3</BoothNumber>
    <CompanyName>sample string 9</CompanyName>
    <Id>1</Id>
    <IsAlreadyInFav>true</IsAlreadyInFav>
    <ServeDate>2025-08-28T22:20:40.7211495+00:00</ServeDate>
    <StationName>sample string 2</StationName>
    <TimeFrom>sample string 8</TimeFrom>
    <TimeTo>sample string 7</TimeTo>
  </APIBeerStationResponse>
  <APIBeerStationResponse>
    <BeerId>4</BeerId>
    <BeerName>sample string 5</BeerName>
    <BoothNumber>sample string 3</BoothNumber>
    <CompanyName>sample string 9</CompanyName>
    <Id>1</Id>
    <IsAlreadyInFav>true</IsAlreadyInFav>
    <ServeDate>2025-08-28T22:20:40.7211495+00:00</ServeDate>
    <StationName>sample string 2</StationName>
    <TimeFrom>sample string 8</TimeFrom>
    <TimeTo>sample string 7</TimeTo>
  </APIBeerStationResponse>
</ArrayOfAPIBeerStationResponse>