GET api/v{version}/feeds/cafemenus?style={style}&css={css}
Generates and formats a feed of current Beckman Cafe menus.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| style |
Sets formatting for feed elements. Accepts: true (legacy html style for use with FourWinds Interactive Content Manager < 4.5); html (preferred format for style = true); unicode (Uses unicode bullets instead of html unordered list). |
string |
Default value is |
| css |
Determines whether or not the html returned (when style = html or style = true) will contain inline css. Accepts: true, false. |
boolean |
Default value is True |
| version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of FeedCafeMenuDTO objects beginning on current date.
Collection of FeedCafeMenuDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Title | string |
None. |
|
| Date | date |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Title": "sample string 1",
"Date": "2026-05-12T11:31:13.7440955-05:00",
"Description": "sample string 3"
},
{
"Title": "sample string 1",
"Date": "2026-05-12T11:31:13.7440955-05:00",
"Description": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfCafeMenu xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<CafeMenu>
<Title>sample string 1</Title>
<Date>2026-05-12T11:31:13.7440955-05:00</Date>
<Description>sample string 3</Description>
</CafeMenu>
<CafeMenu>
<Title>sample string 1</Title>
<Date>2026-05-12T11:31:13.7440955-05:00</Date>
<Description>sample string 3</Description>
</CafeMenu>
</ArrayOfCafeMenu>