Getting Started

Generating API Keys

Calling API Functions

JSON or XML

API Call Rate Limits

Affiliate Accounts

Functions

Types

Merchant Accounts

Functions

Types

DynamicToolArray Type

Represents zero or more dynamic tools.


Array Elements

Type Description
DynamicTool Represents a single dynamic tool.

Remarks

Commission Factory administrators set permissions allowing or denying individual merchants to work with dynamic tools.

Attempting to work with dynamic tools may result in a 403 Forbidden error for some merchants.

JSON XML

Example

[
    {
        "Id": 1,
        "DateCreated": "2000-01-01T00:00:00.000",
        "DateModified": "2000-01-01T00:00:00.000",
        "Name": "Dynamic Tool 1",
        "Type": "Flash Banner",
        "Width": 250,
        "Height": 250,
        "ResourceUrl": "https://www.example.com/FlashBanner1.swf",
        "TargetUrl": "https://www.example.com/",
        "Approved": true
    },
    {
        "Id": 2,
        "DateCreated": "2000-01-01T00:00:00.000",
        "DateModified": "2000-01-01T00:00:00.000",
        "Name": "Dynamic Tool 2",
        "Type": "Flash Banner",
        "Width": 250,
        "Height": 250,
        "ResourceUrl": "https://www.example.com/FlashBanner2.swf",
        "TargetUrl": "https://www.example.com/",
        "Approved": true
    },
    {
        "Id": 3,
        "DateCreated": "2000-01-01T00:00:00.000",
        "DateModified": "2000-01-01T00:00:00.000",
        "Name": "Dynamic Tool 3",
        "Type": "Flash Banner",
        "Width": 250,
        "Height": 250,
        "ResourceUrl": "https://www.example.com/FlashBanner3.swf",
        "TargetUrl": "https://www.example.com/",
        "Approved": false
    }
]
<DynamicToolArray xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="https://api.commissionfactory.com/V1/Merchant">
    <DynamicTool>
        <Id>1</Id>
        <DateCreated>2000-01-01T00:00:00.000</DateCreated>
        <DateModified>2000-01-01T00:00:00.000</DateModified>
        <Name>Dynamic Tool 1</Name>
        <Type>Flash Banner</Type>
        <Width>250</Width>
        <Height>250</Height>
        <ResourceUrl>https://www.example.com/FlashBanner1.swf</ResourceUrl>
        <TargetUrl>https://www.example.com/</TargetUrl>
        <Approved>true</Approved>
    </DynamicTool>
    <DynamicTool>
        <Id>2</Id>
        <DateCreated>2000-01-01T00:00:00.000</DateCreated>
        <DateModified>2000-01-01T00:00:00.000</DateModified>
        <Name>Dynamic Tool 2</Name>
        <Type>Flash Banner</Type>
        <Width>250</Width>
        <Height>250</Height>
        <ResourceUrl>https://www.example.com/FlashBanner2.swf</ResourceUrl>
        <TargetUrl>https://www.example.com/</TargetUrl>
        <Approved>true</Approved>
    </DynamicTool>
    <DynamicTool>
        <Id>3</Id>
        <DateCreated>2000-01-01T00:00:00.000</DateCreated>
        <DateModified>2000-01-01T00:00:00.000</DateModified>
        <Name>Dynamic Tool 3</Name>
        <Type>Flash Banner</Type>
        <Width>250</Width>
        <Height>250</Height>
        <ResourceUrl>https://www.example.com/FlashBanner3.swf</ResourceUrl>
        <TargetUrl>https://www.example.com/</TargetUrl>
        <Approved>false</Approved>
    </DynamicTool>
</DynamicToolArray>

Related Links