Getting Started

Generating API Keys

Calling API Functions

JSON or XML

API Call Rate Limits

Affiliate Accounts

Functions

Types

Merchant Accounts

Functions

Types

AffiliateArray Type

Represents zero or more affiliates.


Array Elements

Type Description
Affiliate Represents a single affiliate.

JSON XML

Example

[
    {
        "Id": 1,
        "DateCreated": "2000-01-01T00:00:00.000",
        "DateModified": "2000-01-01T00:00:00.000",
        "DateApplied": "2000-01-01T00:00:00.000",
        "DateApproved": "2000-01-01T00:00:00.000",
        "ContactName": "John Smith",
        "BusinessName": "Example Pty Ltd",
        "Status": "Approved",
        "TrafficSources": null
    },
    {
        "Id": 2,
        "DateCreated": "2000-01-01T00:00:00.000",
        "DateModified": "2000-01-01T00:00:00.000",
        "DateApplied": "2000-01-01T00:00:00.000",
        "DateApproved": "2000-01-01T00:00:00.000",
        "ContactName": "Jane Doe",
        "BusinessName": "Sample Pty Ltd",
        "Status": "Approved",
        "TrafficSources": null
    },
    {
        "Id": 3,
        "DateCreated": "2000-01-01T00:00:00.000",
        "DateModified": "2000-01-01T00:00:00.000",
        "DateApplied": "2000-01-01T00:00:00.000",
        "DateApproved": null,
        "ContactName": "John Citizen",
        "BusinessName": null,
        "Status": "Pending",
        "TrafficSources": null
    }
]
<AffiliateArray xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="https://api.commissionfactory.com/V1/Merchant">
    <Affiliate>
        <Id>1</Id>
        <DateCreated>2000-01-01T00:00:00.000</DateCreated>
        <DateModified>2000-01-01T00:00:00.000</DateModified>
        <DateApplied>2000-01-01T00:00:00.000</DateApplied>
        <DateApproved>2000-01-01T00:00:00.000</DateApproved>
        <ContactName>John Smith</ContactName>
        <BusinessName>Example Pty Ltd</BusinessName>
        <Status>Approved</Status>
        <TrafficSources i:nil="true" />
    </Affiliate>
    <Affiliate>
        <Id>2</Id>
        <DateCreated>2000-01-01T00:00:00.000</DateCreated>
        <DateModified>2000-01-01T00:00:00.000</DateModified>
        <DateApplied>2000-01-01T00:00:00.000</DateApplied>
        <DateApproved>2000-01-01T00:00:00.000</DateApproved>
        <ContactName>Jane Doe</ContactName>
        <BusinessName>Sample Pty Ltd</BusinessName>
        <Status>Approved</Status>
        <TrafficSources i:nil="true" />
    </Affiliate>
    <Affiliate>
        <Id>3</Id>
        <DateCreated>2000-01-01T00:00:00.000</DateCreated>
        <DateModified>2000-01-01T00:00:00.000</DateModified>
        <DateApplied>2000-01-01T00:00:00.000</DateApplied>
        <DateApproved i:nil="true" />
        <ContactName>John Citizen</ContactName>
        <BusinessName i:nil="true" />
        <Status>Pending</Status>
        <TrafficSources i:nil="true" />
    </Affiliate>
<AffiliateArray>

Related Links