GET api/Publisher
Gets all publishers
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of publishers
Collection of PublisherName | Description | Type | Additional information |
---|---|---|---|
PublisherID | integer |
None. |
|
Name | string |
None. |
|
URL | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "PublisherID": 1, "Name": "sample string 2", "URL": "sample string 3" }, { "PublisherID": 1, "Name": "sample string 2", "URL": "sample string 3" } ]
application/xml, text/xml
Sample:
<ArrayOfPublisher xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Yummy.Portal.Models"> <Publisher> <Name>sample string 2</Name> <PublisherID>1</PublisherID> <URL>sample string 3</URL> </Publisher> <Publisher> <Name>sample string 2</Name> <PublisherID>1</PublisherID> <URL>sample string 3</URL> </Publisher> </ArrayOfPublisher>