GET api/RssFeeds/RssWithName

Return all RssFeeds targeting Given Url

Request Information

URI Parameters

None.

Body Parameters

rssResuestNameObject
NameDescriptionTypeAdditional information
Name

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1"
}

application/xml, text/xml

Sample:
<RssFeedsController.rssResuestNameObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ELO_IdentityAPI_Eloapp.net.Controllers">
  <Name>sample string 1</Name>
</RssFeedsController.rssResuestNameObject>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'rssResuestNameObject'.

Response Information

Resource Description

Collection of RssFeed
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

RssUrl

string

None.

CompanyId

integer

None.

IsDeletable

boolean

None.

IsNotified

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2",
    "RssUrl": "sample string 3",
    "CompanyId": 4,
    "IsDeletable": true,
    "IsNotified": true
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "RssUrl": "sample string 3",
    "CompanyId": 4,
    "IsDeletable": true,
    "IsNotified": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfRssFeed xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ELO_IdentityAPI_Eloapp.net.Models">
  <RssFeed>
    <CompanyId>4</CompanyId>
    <Id>1</Id>
    <IsDeletable>true</IsDeletable>
    <IsNotified>true</IsNotified>
    <Name>sample string 2</Name>
    <RssUrl>sample string 3</RssUrl>
  </RssFeed>
  <RssFeed>
    <CompanyId>4</CompanyId>
    <Id>1</Id>
    <IsDeletable>true</IsDeletable>
    <IsNotified>true</IsNotified>
    <Name>sample string 2</Name>
    <RssUrl>sample string 3</RssUrl>
  </RssFeed>
</ArrayOfRssFeed>