GET announcements/{id}
Return a specific announcement data object by id
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
id | announcement id |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{ "id": "sample string 1", "subject": "sample string 2", "date": "sample string 3", "description": "sample string 4", "network": { "id": "sample string 1", "name": "sample string 2" }, "sport": { "id": "sample string 1", "name": "sample string 2" } }
application/xml, text/xml
Sample:
<AnnouncementDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.API.DTO"> <date>sample string 3</date> <description>sample string 4</description> <id>sample string 1</id> <network> <id>sample string 1</id> <name>sample string 2</name> </network> <sport> <id>sample string 1</id> <name>sample string 2</name> </sport> <subject>sample string 2</subject> </AnnouncementDto>