GET api/Feed/{name}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
name

string

Required

Body Parameters

None.

Response Information

Resource Description

Feed
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Description

string

None.

Environment

string

None.

FeedType

FeedType

None.

Status

Collection of FeedStatus

None.

Enabled

boolean

None.

Visible

boolean

None.

FeedContentTypes

Collection of FeedContentType

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "name": "sample string 2",
  "description": "sample string 3",
  "environment": "sample string 4",
  "feedType": {
    "id": 1,
    "name": "sample string 2",
    "description": "sample string 3"
  },
  "status": [
    {
      "instanceId": "sample string 1",
      "text": "sample string 2",
      "statusId": 3,
      "status": "sample string 4",
      "pimType": "sample string 5",
      "siteCode": "sample string 6",
      "updated": "2025-08-18T07:57:20.0808204+00:00",
      "feedName": "sample string 8",
      "feedContentType": {
        "id": 1,
        "name": "sample string 2"
      }
    },
    {
      "instanceId": "sample string 1",
      "text": "sample string 2",
      "statusId": 3,
      "status": "sample string 4",
      "pimType": "sample string 5",
      "siteCode": "sample string 6",
      "updated": "2025-08-18T07:57:20.0808204+00:00",
      "feedName": "sample string 8",
      "feedContentType": {
        "id": 1,
        "name": "sample string 2"
      }
    }
  ],
  "enabled": true,
  "visible": true,
  "feedContentTypes": [
    {
      "id": 1,
      "name": "sample string 2"
    },
    {
      "id": 1,
      "name": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<Feed xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FeedConfig.Repository.Models">
  <Description>sample string 3</Description>
  <Enabled>true</Enabled>
  <Environment>sample string 4</Environment>
  <FeedContentTypes>
    <FeedContentType>
      <Id>1</Id>
      <Name>sample string 2</Name>
    </FeedContentType>
    <FeedContentType>
      <Id>1</Id>
      <Name>sample string 2</Name>
    </FeedContentType>
  </FeedContentTypes>
  <FeedType>
    <Description>sample string 3</Description>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </FeedType>
  <Id>1</Id>
  <Name>sample string 2</Name>
  <Status>
    <FeedStatus>
      <FeedContentType>
        <Id>1</Id>
        <Name>sample string 2</Name>
      </FeedContentType>
      <FeedName>sample string 8</FeedName>
      <InstanceId>sample string 1</InstanceId>
      <PimType>sample string 5</PimType>
      <SiteCode>sample string 6</SiteCode>
      <Status>sample string 4</Status>
      <StatusId>3</StatusId>
      <Text>sample string 2</Text>
      <Updated>2025-08-18T07:57:20.0808204+00:00</Updated>
    </FeedStatus>
    <FeedStatus>
      <FeedContentType>
        <Id>1</Id>
        <Name>sample string 2</Name>
      </FeedContentType>
      <FeedName>sample string 8</FeedName>
      <InstanceId>sample string 1</InstanceId>
      <PimType>sample string 5</PimType>
      <SiteCode>sample string 6</SiteCode>
      <Status>sample string 4</Status>
      <StatusId>3</StatusId>
      <Text>sample string 2</Text>
      <Updated>2025-08-18T07:57:20.0808204+00:00</Updated>
    </FeedStatus>
  </Status>
  <Visible>true</Visible>
</Feed>