GET v3/me/networks/{networkid}/announcements?top={top}
PARTICIPANT (member-self) INTRAMURAL HOME ANNOUNCEMENTS — the school/network announcement feed shown on the participant intramural home (mirrors the SPA intramural home, which renders the same School-scoped Announcement feed as a pre-baked .ascx HTML blob; the MUI portal needs structured rows instead). Wraps the page-pure Business.Announcement.GetLatestAnnouncements (imLeagues/BLL/Announcement.cs:553 — raw SQL "select top N * from Announcements where Type=@Type and OwnerId=@OwnerID order by AnnouncDate desc", NO admin gate) for OwnerType.School (=0) and projects to a small camelCase VO. This is a non-PII school read; curUserId is still forced from the token to keep the route member-self by convention (no body / no caller-supplied identity is trusted).
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| networkid | network (school) id whose announcements to read |
Define this parameter in the request URI. |
| top | max rows to return (default 10) |
Define this parameter in the request URI. |
Response Information
list of ParticipantAnnouncementOutVO ordered newest-first
Response body formats
application/json, text/json
[
{
"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
<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 not available.