Messageboard


Click here for a complete list of operations.

GetPagedItems

Retrieves this list of latest threads in the messageboard depending on type

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
page:
type:
wid:
orderBy:
advertiseType:
apiKey:

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /dev/Messageboard.asmx HTTP/1.1
Host: frontur.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://frontur.com/api/GetPagedItems"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GetPagedItems xmlns="http://frontur.com/api">
      <page>int</page>
      <type>int</type>
      <wid>int</wid>
      <orderBy>int</orderBy>
      <advertiseType>int</advertiseType>
      <apiKey>string</apiKey>
    </GetPagedItems>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GetPagedItemsResponse xmlns="http://frontur.com/api">
      <GetPagedItemsResult>
        <MessageboardEntry>
          <Advid xmlns="http://fontur.com/webservices/">int</Advid>
          <TopAdvid xmlns="http://fontur.com/webservices/">int</TopAdvid>
          <Type xmlns="http://fontur.com/webservices/">int</Type>
          <CurrentOffset xmlns="http://fontur.com/webservices/">int</CurrentOffset>
          <MoreRecords xmlns="http://fontur.com/webservices/">int</MoreRecords>
          <Counter xmlns="http://fontur.com/webservices/">int</Counter>
          <Username xmlns="http://fontur.com/webservices/">string</Username>
          <ImageUrl xmlns="http://fontur.com/webservices/">string</ImageUrl>
          <PollName xmlns="http://fontur.com/webservices/">string</PollName>
          <Eighteen xmlns="http://fontur.com/webservices/">boolean</Eighteen>
          <Created xmlns="http://fontur.com/webservices/">dateTime</Created>
          <Updated xmlns="http://fontur.com/webservices/">dateTime</Updated>
          <SubEntry xmlns="http://fontur.com/webservices/">
            <Advid>int</Advid>
            <TopAdvid>int</TopAdvid>
            <Type>int</Type>
            <CurrentOffset>int</CurrentOffset>
            <MoreRecords>int</MoreRecords>
            <Counter>int</Counter>
            <Username>string</Username>
            <ImageUrl>string</ImageUrl>
            <PollName>string</PollName>
            <Eighteen>boolean</Eighteen>
            <Created>dateTime</Created>
            <Updated>dateTime</Updated>
            <SubEntry xsi:nil="true" />
            <Sticky>boolean</Sticky>
            <AdvertiseType>int</AdvertiseType>
            <Pid>int</Pid>
          </SubEntry>
          <Sticky xmlns="http://fontur.com/webservices/">boolean</Sticky>
          <AdvertiseType xmlns="http://fontur.com/webservices/">int</AdvertiseType>
          <Pid xmlns="http://fontur.com/webservices/">int</Pid>
        </MessageboardEntry>
        <MessageboardEntry>
          <Advid xmlns="http://fontur.com/webservices/">int</Advid>
          <TopAdvid xmlns="http://fontur.com/webservices/">int</TopAdvid>
          <Type xmlns="http://fontur.com/webservices/">int</Type>
          <CurrentOffset xmlns="http://fontur.com/webservices/">int</CurrentOffset>
          <MoreRecords xmlns="http://fontur.com/webservices/">int</MoreRecords>
          <Counter xmlns="http://fontur.com/webservices/">int</Counter>
          <Username xmlns="http://fontur.com/webservices/">string</Username>
          <ImageUrl xmlns="http://fontur.com/webservices/">string</ImageUrl>
          <PollName xmlns="http://fontur.com/webservices/">string</PollName>
          <Eighteen xmlns="http://fontur.com/webservices/">boolean</Eighteen>
          <Created xmlns="http://fontur.com/webservices/">dateTime</Created>
          <Updated xmlns="http://fontur.com/webservices/">dateTime</Updated>
          <SubEntry xmlns="http://fontur.com/webservices/">
            <Advid>int</Advid>
            <TopAdvid>int</TopAdvid>
            <Type>int</Type>
            <CurrentOffset>int</CurrentOffset>
            <MoreRecords>int</MoreRecords>
            <Counter>int</Counter>
            <Username>string</Username>
            <ImageUrl>string</ImageUrl>
            <PollName>string</PollName>
            <Eighteen>boolean</Eighteen>
            <Created>dateTime</Created>
            <Updated>dateTime</Updated>
            <SubEntry xsi:nil="true" />
            <Sticky>boolean</Sticky>
            <AdvertiseType>int</AdvertiseType>
            <Pid>int</Pid>
          </SubEntry>
          <Sticky xmlns="http://fontur.com/webservices/">boolean</Sticky>
          <AdvertiseType xmlns="http://fontur.com/webservices/">int</AdvertiseType>
          <Pid xmlns="http://fontur.com/webservices/">int</Pid>
        </MessageboardEntry>
      </GetPagedItemsResult>
    </GetPagedItemsResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /dev/Messageboard.asmx HTTP/1.1
Host: frontur.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <GetPagedItems xmlns="http://frontur.com/api">
      <page>int</page>
      <type>int</type>
      <wid>int</wid>
      <orderBy>int</orderBy>
      <advertiseType>int</advertiseType>
      <apiKey>string</apiKey>
    </GetPagedItems>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <GetPagedItemsResponse xmlns="http://frontur.com/api">
      <GetPagedItemsResult>
        <MessageboardEntry>
          <Advid xmlns="http://fontur.com/webservices/">int</Advid>
          <TopAdvid xmlns="http://fontur.com/webservices/">int</TopAdvid>
          <Type xmlns="http://fontur.com/webservices/">int</Type>
          <CurrentOffset xmlns="http://fontur.com/webservices/">int</CurrentOffset>
          <MoreRecords xmlns="http://fontur.com/webservices/">int</MoreRecords>
          <Counter xmlns="http://fontur.com/webservices/">int</Counter>
          <Username xmlns="http://fontur.com/webservices/">string</Username>
          <ImageUrl xmlns="http://fontur.com/webservices/">string</ImageUrl>
          <PollName xmlns="http://fontur.com/webservices/">string</PollName>
          <Eighteen xmlns="http://fontur.com/webservices/">boolean</Eighteen>
          <Created xmlns="http://fontur.com/webservices/">dateTime</Created>
          <Updated xmlns="http://fontur.com/webservices/">dateTime</Updated>
          <SubEntry xmlns="http://fontur.com/webservices/">
            <Advid>int</Advid>
            <TopAdvid>int</TopAdvid>
            <Type>int</Type>
            <CurrentOffset>int</CurrentOffset>
            <MoreRecords>int</MoreRecords>
            <Counter>int</Counter>
            <Username>string</Username>
            <ImageUrl>string</ImageUrl>
            <PollName>string</PollName>
            <Eighteen>boolean</Eighteen>
            <Created>dateTime</Created>
            <Updated>dateTime</Updated>
            <SubEntry xsi:nil="true" />
            <Sticky>boolean</Sticky>
            <AdvertiseType>int</AdvertiseType>
            <Pid>int</Pid>
          </SubEntry>
          <Sticky xmlns="http://fontur.com/webservices/">boolean</Sticky>
          <AdvertiseType xmlns="http://fontur.com/webservices/">int</AdvertiseType>
          <Pid xmlns="http://fontur.com/webservices/">int</Pid>
        </MessageboardEntry>
        <MessageboardEntry>
          <Advid xmlns="http://fontur.com/webservices/">int</Advid>
          <TopAdvid xmlns="http://fontur.com/webservices/">int</TopAdvid>
          <Type xmlns="http://fontur.com/webservices/">int</Type>
          <CurrentOffset xmlns="http://fontur.com/webservices/">int</CurrentOffset>
          <MoreRecords xmlns="http://fontur.com/webservices/">int</MoreRecords>
          <Counter xmlns="http://fontur.com/webservices/">int</Counter>
          <Username xmlns="http://fontur.com/webservices/">string</Username>
          <ImageUrl xmlns="http://fontur.com/webservices/">string</ImageUrl>
          <PollName xmlns="http://fontur.com/webservices/">string</PollName>
          <Eighteen xmlns="http://fontur.com/webservices/">boolean</Eighteen>
          <Created xmlns="http://fontur.com/webservices/">dateTime</Created>
          <Updated xmlns="http://fontur.com/webservices/">dateTime</Updated>
          <SubEntry xmlns="http://fontur.com/webservices/">
            <Advid>int</Advid>
            <TopAdvid>int</TopAdvid>
            <Type>int</Type>
            <CurrentOffset>int</CurrentOffset>
            <MoreRecords>int</MoreRecords>
            <Counter>int</Counter>
            <Username>string</Username>
            <ImageUrl>string</ImageUrl>
            <PollName>string</PollName>
            <Eighteen>boolean</Eighteen>
            <Created>dateTime</Created>
            <Updated>dateTime</Updated>
            <SubEntry xsi:nil="true" />
            <Sticky>boolean</Sticky>
            <AdvertiseType>int</AdvertiseType>
            <Pid>int</Pid>
          </SubEntry>
          <Sticky xmlns="http://fontur.com/webservices/">boolean</Sticky>
          <AdvertiseType xmlns="http://fontur.com/webservices/">int</AdvertiseType>
          <Pid xmlns="http://fontur.com/webservices/">int</Pid>
        </MessageboardEntry>
      </GetPagedItemsResult>
    </GetPagedItemsResponse>
  </soap12:Body>
</soap12:Envelope>

HTTP GET

The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.

GET /dev/Messageboard.asmx/GetPagedItems?page=string&type=string&wid=string&orderBy=string&advertiseType=string&apiKey=string HTTP/1.1
Host: frontur.com
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfMessageboardEntry xmlns="http://frontur.com/api">
  <MessageboardEntry>
    <Advid xmlns="http://fontur.com/webservices/">int</Advid>
    <TopAdvid xmlns="http://fontur.com/webservices/">int</TopAdvid>
    <Type xmlns="http://fontur.com/webservices/">int</Type>
    <CurrentOffset xmlns="http://fontur.com/webservices/">int</CurrentOffset>
    <MoreRecords xmlns="http://fontur.com/webservices/">int</MoreRecords>
    <Counter xmlns="http://fontur.com/webservices/">int</Counter>
    <Username xmlns="http://fontur.com/webservices/">string</Username>
    <ImageUrl xmlns="http://fontur.com/webservices/">string</ImageUrl>
    <PollName xmlns="http://fontur.com/webservices/">string</PollName>
    <Eighteen xmlns="http://fontur.com/webservices/">boolean</Eighteen>
    <Created xmlns="http://fontur.com/webservices/">dateTime</Created>
    <Updated xmlns="http://fontur.com/webservices/">dateTime</Updated>
    <SubEntry xmlns="http://fontur.com/webservices/">
      <Advid>int</Advid>
      <TopAdvid>int</TopAdvid>
      <Type>int</Type>
      <CurrentOffset>int</CurrentOffset>
      <MoreRecords>int</MoreRecords>
      <Counter>int</Counter>
      <Username>string</Username>
      <ImageUrl>string</ImageUrl>
      <PollName>string</PollName>
      <Eighteen>boolean</Eighteen>
      <Created>dateTime</Created>
      <Updated>dateTime</Updated>
      <SubEntry>
        <Advid>int</Advid>
        <TopAdvid>int</TopAdvid>
        <Type>int</Type>
        <CurrentOffset>int</CurrentOffset>
        <MoreRecords>int</MoreRecords>
        <Counter>int</Counter>
        <Username>string</Username>
        <ImageUrl>string</ImageUrl>
        <PollName>string</PollName>
        <Eighteen>boolean</Eighteen>
        <Created>dateTime</Created>
        <Updated>dateTime</Updated>
        <SubEntry d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <Sticky>boolean</Sticky>
        <AdvertiseType>int</AdvertiseType>
        <Pid>int</Pid>
      </SubEntry>
      <Sticky>boolean</Sticky>
      <AdvertiseType>int</AdvertiseType>
      <Pid>int</Pid>
    </SubEntry>
    <Sticky xmlns="http://fontur.com/webservices/">boolean</Sticky>
    <AdvertiseType xmlns="http://fontur.com/webservices/">int</AdvertiseType>
    <Pid xmlns="http://fontur.com/webservices/">int</Pid>
  </MessageboardEntry>
  <MessageboardEntry>
    <Advid xmlns="http://fontur.com/webservices/">int</Advid>
    <TopAdvid xmlns="http://fontur.com/webservices/">int</TopAdvid>
    <Type xmlns="http://fontur.com/webservices/">int</Type>
    <CurrentOffset xmlns="http://fontur.com/webservices/">int</CurrentOffset>
    <MoreRecords xmlns="http://fontur.com/webservices/">int</MoreRecords>
    <Counter xmlns="http://fontur.com/webservices/">int</Counter>
    <Username xmlns="http://fontur.com/webservices/">string</Username>
    <ImageUrl xmlns="http://fontur.com/webservices/">string</ImageUrl>
    <PollName xmlns="http://fontur.com/webservices/">string</PollName>
    <Eighteen xmlns="http://fontur.com/webservices/">boolean</Eighteen>
    <Created xmlns="http://fontur.com/webservices/">dateTime</Created>
    <Updated xmlns="http://fontur.com/webservices/">dateTime</Updated>
    <SubEntry xmlns="http://fontur.com/webservices/">
      <Advid>int</Advid>
      <TopAdvid>int</TopAdvid>
      <Type>int</Type>
      <CurrentOffset>int</CurrentOffset>
      <MoreRecords>int</MoreRecords>
      <Counter>int</Counter>
      <Username>string</Username>
      <ImageUrl>string</ImageUrl>
      <PollName>string</PollName>
      <Eighteen>boolean</Eighteen>
      <Created>dateTime</Created>
      <Updated>dateTime</Updated>
      <SubEntry>
        <Advid>int</Advid>
        <TopAdvid>int</TopAdvid>
        <Type>int</Type>
        <CurrentOffset>int</CurrentOffset>
        <MoreRecords>int</MoreRecords>
        <Counter>int</Counter>
        <Username>string</Username>
        <ImageUrl>string</ImageUrl>
        <PollName>string</PollName>
        <Eighteen>boolean</Eighteen>
        <Created>dateTime</Created>
        <Updated>dateTime</Updated>
        <SubEntry d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <Sticky>boolean</Sticky>
        <AdvertiseType>int</AdvertiseType>
        <Pid>int</Pid>
      </SubEntry>
      <Sticky>boolean</Sticky>
      <AdvertiseType>int</AdvertiseType>
      <Pid>int</Pid>
    </SubEntry>
    <Sticky xmlns="http://fontur.com/webservices/">boolean</Sticky>
    <AdvertiseType xmlns="http://fontur.com/webservices/">int</AdvertiseType>
    <Pid xmlns="http://fontur.com/webservices/">int</Pid>
  </MessageboardEntry>
</ArrayOfMessageboardEntry>

HTTP POST

The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.

POST /dev/Messageboard.asmx/GetPagedItems HTTP/1.1
Host: frontur.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

page=string&type=string&wid=string&orderBy=string&advertiseType=string&apiKey=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfMessageboardEntry xmlns="http://frontur.com/api">
  <MessageboardEntry>
    <Advid xmlns="http://fontur.com/webservices/">int</Advid>
    <TopAdvid xmlns="http://fontur.com/webservices/">int</TopAdvid>
    <Type xmlns="http://fontur.com/webservices/">int</Type>
    <CurrentOffset xmlns="http://fontur.com/webservices/">int</CurrentOffset>
    <MoreRecords xmlns="http://fontur.com/webservices/">int</MoreRecords>
    <Counter xmlns="http://fontur.com/webservices/">int</Counter>
    <Username xmlns="http://fontur.com/webservices/">string</Username>
    <ImageUrl xmlns="http://fontur.com/webservices/">string</ImageUrl>
    <PollName xmlns="http://fontur.com/webservices/">string</PollName>
    <Eighteen xmlns="http://fontur.com/webservices/">boolean</Eighteen>
    <Created xmlns="http://fontur.com/webservices/">dateTime</Created>
    <Updated xmlns="http://fontur.com/webservices/">dateTime</Updated>
    <SubEntry xmlns="http://fontur.com/webservices/">
      <Advid>int</Advid>
      <TopAdvid>int</TopAdvid>
      <Type>int</Type>
      <CurrentOffset>int</CurrentOffset>
      <MoreRecords>int</MoreRecords>
      <Counter>int</Counter>
      <Username>string</Username>
      <ImageUrl>string</ImageUrl>
      <PollName>string</PollName>
      <Eighteen>boolean</Eighteen>
      <Created>dateTime</Created>
      <Updated>dateTime</Updated>
      <SubEntry>
        <Advid>int</Advid>
        <TopAdvid>int</TopAdvid>
        <Type>int</Type>
        <CurrentOffset>int</CurrentOffset>
        <MoreRecords>int</MoreRecords>
        <Counter>int</Counter>
        <Username>string</Username>
        <ImageUrl>string</ImageUrl>
        <PollName>string</PollName>
        <Eighteen>boolean</Eighteen>
        <Created>dateTime</Created>
        <Updated>dateTime</Updated>
        <SubEntry d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <Sticky>boolean</Sticky>
        <AdvertiseType>int</AdvertiseType>
        <Pid>int</Pid>
      </SubEntry>
      <Sticky>boolean</Sticky>
      <AdvertiseType>int</AdvertiseType>
      <Pid>int</Pid>
    </SubEntry>
    <Sticky xmlns="http://fontur.com/webservices/">boolean</Sticky>
    <AdvertiseType xmlns="http://fontur.com/webservices/">int</AdvertiseType>
    <Pid xmlns="http://fontur.com/webservices/">int</Pid>
  </MessageboardEntry>
  <MessageboardEntry>
    <Advid xmlns="http://fontur.com/webservices/">int</Advid>
    <TopAdvid xmlns="http://fontur.com/webservices/">int</TopAdvid>
    <Type xmlns="http://fontur.com/webservices/">int</Type>
    <CurrentOffset xmlns="http://fontur.com/webservices/">int</CurrentOffset>
    <MoreRecords xmlns="http://fontur.com/webservices/">int</MoreRecords>
    <Counter xmlns="http://fontur.com/webservices/">int</Counter>
    <Username xmlns="http://fontur.com/webservices/">string</Username>
    <ImageUrl xmlns="http://fontur.com/webservices/">string</ImageUrl>
    <PollName xmlns="http://fontur.com/webservices/">string</PollName>
    <Eighteen xmlns="http://fontur.com/webservices/">boolean</Eighteen>
    <Created xmlns="http://fontur.com/webservices/">dateTime</Created>
    <Updated xmlns="http://fontur.com/webservices/">dateTime</Updated>
    <SubEntry xmlns="http://fontur.com/webservices/">
      <Advid>int</Advid>
      <TopAdvid>int</TopAdvid>
      <Type>int</Type>
      <CurrentOffset>int</CurrentOffset>
      <MoreRecords>int</MoreRecords>
      <Counter>int</Counter>
      <Username>string</Username>
      <ImageUrl>string</ImageUrl>
      <PollName>string</PollName>
      <Eighteen>boolean</Eighteen>
      <Created>dateTime</Created>
      <Updated>dateTime</Updated>
      <SubEntry>
        <Advid>int</Advid>
        <TopAdvid>int</TopAdvid>
        <Type>int</Type>
        <CurrentOffset>int</CurrentOffset>
        <MoreRecords>int</MoreRecords>
        <Counter>int</Counter>
        <Username>string</Username>
        <ImageUrl>string</ImageUrl>
        <PollName>string</PollName>
        <Eighteen>boolean</Eighteen>
        <Created>dateTime</Created>
        <Updated>dateTime</Updated>
        <SubEntry d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <Sticky>boolean</Sticky>
        <AdvertiseType>int</AdvertiseType>
        <Pid>int</Pid>
      </SubEntry>
      <Sticky>boolean</Sticky>
      <AdvertiseType>int</AdvertiseType>
      <Pid>int</Pid>
    </SubEntry>
    <Sticky xmlns="http://fontur.com/webservices/">boolean</Sticky>
    <AdvertiseType xmlns="http://fontur.com/webservices/">int</AdvertiseType>
    <Pid xmlns="http://fontur.com/webservices/">int</Pid>
  </MessageboardEntry>
</ArrayOfMessageboardEntry>