Getting Started

Generating API Keys

Calling API Functions

JSON or XML

API Call Rate Limits

Affiliate Accounts

Functions

Types

Merchant Accounts

Functions

Types

BannerGroup Type

Represents a single banner group.


Properties

Name Type Description
Id
Integer The ID of the banner group.
DateCreated
DateTime The date and time that the banner group was created.
DateModified
DateTime The date and time that the banner group was last modified.
Name
String The name of the banner group.
TargetUrl
Url The address of the landing page on the merchant's website.
ExpiryDate
DateTime The date that the banner group expires.

JSON XML

Example

{
    "Id": 1,
    "DateCreated": "2000-01-01T00:00:00.000",
    "DateModified": "2000-01-01T00:00:00.000",
    "Name": " Default Group",
    "TargetUrl": "https://www.example.com/",
    "ExpiryDate": null
}
<BannerGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="https://api.commissionfactory.com/V1/Merchant">
    <Id>1</Id>
    <DateCreated>2000-01-01T00:00:00.000</DateCreated>
    <DateModified>2000-01-01T00:00:00.000</DateModified>
    <Name> Default Group</Name>
    <TargetUrl>https://www.example.com/</TargetUrl>
    <ExpiryDate i:nil="true" />
</BannerGroup>

Related Links