GET v3/me/leagues/{id}/announcements?top={top}

PARTICIPANT — league-scoped announcements (the SPA league-home feed). Mirrors GetNetworkAnnouncements (School scope) at OwnerType.League: wraps the page-pure Business.Announcement.GetLatestAnnouncements (raw top-N by owner, no admin gate — league announcements are broadcast content the legacy league home showed to every viewer).

Request Information

Parameters

NameDescriptionAdditional information
id
league id whose announcements to read

Define this parameter in the request URI.

top
max rows (default 10)

Define this parameter in the request URI.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "title": "sample string 2",
    "body": "sample string 3",
    "postedAt": "sample string 4",
    "updatedBy": "sample string 5"
  },
  {
    "id": 1,
    "title": "sample string 2",
    "body": "sample string 3",
    "postedAt": "sample string 4",
    "updatedBy": "sample string 5"
  },
  {
    "id": 1,
    "title": "sample string 2",
    "body": "sample string 3",
    "postedAt": "sample string 4",
    "updatedBy": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfParticipantAnnouncementOutVO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Web.API.Models.Output.V3.Views.Mobile.Me">
  <ParticipantAnnouncementOutVO>
    <Body>sample string 3</Body>
    <Id>1</Id>
    <PostedAt>sample string 4</PostedAt>
    <Title>sample string 2</Title>
    <UpdatedBy>sample string 5</UpdatedBy>
  </ParticipantAnnouncementOutVO>
  <ParticipantAnnouncementOutVO>
    <Body>sample string 3</Body>
    <Id>1</Id>
    <PostedAt>sample string 4</PostedAt>
    <Title>sample string 2</Title>
    <UpdatedBy>sample string 5</UpdatedBy>
  </ParticipantAnnouncementOutVO>
  <ParticipantAnnouncementOutVO>
    <Body>sample string 3</Body>
    <Id>1</Id>
    <PostedAt>sample string 4</PostedAt>
    <Title>sample string 2</Title>
    <UpdatedBy>sample string 5</UpdatedBy>
  </ParticipantAnnouncementOutVO>
</ArrayOfParticipantAnnouncementOutVO>

multipart/form-data

Sample:

Sample not available.