Extend and interact with
Commission Factory
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",
"MerchantId": 1,
"MerchantName": "Example Pty Ltd",
"MerchantAvatarUrl": "https://c.cfjump.com/Avatars/0.png",
"Name": "Example Pty Ltd Product Feed",
"Type": "Product Catalogue",
"ItemsCount": 3,
"Items": null
},
{
"Id": 2,
"DateCreated": "2000-01-01T00:00:00.000",
"DateModified": "2000-01-01T00:00:00.000",
"MerchantId": 1,
"MerchantName": "Example Pty Ltd",
"MerchantAvatarUrl": "https://c.cfjump.com/Avatars/0.png",
"Name": "Example Pty Ltd Specials",
"Type": "Special Offers",
"ItemsCount": 4,
"Items": null
},
{
"Id": 5,
"DateCreated": "2000-01-01T00:00:00.000",
"DateModified": "2000-01-01T00:00:00.000",
"MerchantId": 2,
"MerchantName": "Sample Pty Ltd",
"MerchantAvatarUrl": "https://c.cfjump.com/Avatars/0.png",
"Name": "Sample Pty Ltd Product Feed",
"Type": "Product Catalogue",
"ItemsCount": 5,
"Items": null
}
]
<DataFeedArray xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="https://api.commissionfactory.com/V1/Affiliate">
<DataFeed>
<Id>1</Id>
<DateCreated>2000-01-01T00:00:00.000</DateCreated>
<DateModified>2000-01-01T00:00:00.000</DateModified>
<MerchantId>1</MerchantId>
<MerchantName>Example Pty Ltd</MerchantName>
<MerchantAvatarUrl>https://c.cfjump.com/Avatars/0.png</MerchantAvatarUrl>
<Name>Example Pty Ltd Product Feed</Name>
<Type>Product Catalogue</Type>
<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>
<MerchantId>1</MerchantId>
<MerchantName>Example Pty Ltd</MerchantName>
<MerchantAvatarUrl>https://c.cfjump.com/Avatars/0.png</MerchantAvatarUrl>
<Name>Example Pty Ltd Specials</Name>
<Type>Special Offers</Type>
<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>
<MerchantId>2</MerchantId>
<MerchantName>Sample Pty Ltd</MerchantName>
<MerchantAvatarUrl>https://c.cfjump.com/Avatars/0.png</MerchantAvatarUrl>
<Name>Sample Pty Ltd Product Feed</Name>
<Type>Product Catalogue</Type>
<ItemsCount>5</ItemsCount>
<Items i:nil="true" />
</DataFeed>
</DataFeedArray>