Represents zero or more data feeds.
Type | Description |
---|---|
DataFeed | Represents a single data feed. |
If you use the GET DataFeeds function to retrieve multiple data feeds, then the Items property of each DataFeed object will be NULL.
If you use the GET DataFeeds/[id] function to retrieve a single data feed, then the Items property will contain a DataFeedItemArray object.
[ { "Id": 1, "DateCreated": "2000-01-01T00:00:00.000", "DateModified": "2000-01-01T00:00:00.000", "Name": "Example Pty Ltd Product Feed", "Type": "Product Catalogue", "UpdateFrequency": "Daily", "ItemsCount": 3, "Items": null }, { "Id": 2, "DateCreated": "2000-01-01T00:00:00.000", "DateModified": "2000-01-01T00:00:00.000", "Name": "Example Pty Ltd Specials", "Type": "Special Offers", "UpdateFrequency": "Weekly", "ItemsCount": 4, "Items": null }, { "Id": 3, "DateCreated": "2000-01-01T00:00:00.000", "DateModified": "2000-01-01T00:00:00.000", "Name": "Example Pty Ltd Packages", "Type": "Product Catalogue", "UpdateFrequency": "Manual", "ItemsCount": 5, "Items": null } ]
<DataFeedArray xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="https://api.commissionfactory.com/V1/Merchant"> <DataFeed> <Id>1</Id> <DateCreated>2000-01-01T00:00:00.000</DateCreated> <DateModified>2000-01-01T00:00:00.000</DateModified> <Name>Example Pty Ltd Product Feed</Name> <Type>Product Catalogue</Type> <UpdateFrequency>Daily</UpdateFrequency> <ItemsCount>3</ItemsCount> <Items i:nil="true" /> </DataFeed> <DataFeed> <Id>2</Id> <DateCreated>2000-01-01T00:00:00.000</DateCreated> <DateModified>2000-01-01T00:00:00.000</DateModified> <Name>Example Pty Ltd Specials</Name> <Type>Special Offers</Type> <UpdateFrequency>Weekly</UpdateFrequency> <ItemsCount>4</ItemsCount> <Items i:nil="true" /> </DataFeed> <DataFeed> <Id>3</Id> <DateCreated>2000-01-01T00:00:00.000</DateCreated> <DateModified>2000-01-01T00:00:00.000</DateModified> <Name>Example Pty Ltd Packages</Name> <Type>Product Catalogue</Type> <UpdateFrequency>Manual</UpdateFrequency> <ItemsCount>5</ItemsCount> <Items i:nil="true" /> </DataFeed> </DataFeedArray>