GET api/Publisher/{publisherName}
Gets a publisher by name
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
publisherName |
Name of publisher |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Publisher
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" }
application/xml, text/xml
Sample:
<Publisher xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Yummy.Portal.Models"> <Name>sample string 2</Name> <PublisherID>1</PublisherID> <URL>sample string 3</URL> </Publisher>