GET api/F2UNoticesList/{id}?ctry={ctry}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

None.

ctry

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Notices
NameDescriptionTypeAdditional information
PromptMessage

string

None.

Notice

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PromptMessage": "sample string 1",
    "Notice": "sample string 2"
  },
  {
    "PromptMessage": "sample string 1",
    "Notice": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfNotices xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Forever2UWebAPI.Models">
  <Notices>
    <Notice>sample string 2</Notice>
    <PromptMessage>sample string 1</PromptMessage>
  </Notices>
  <Notices>
    <Notice>sample string 2</Notice>
    <PromptMessage>sample string 1</PromptMessage>
  </Notices>
</ArrayOfNotices>