Extend and interact with
Commission Factory
Represents a single dynamic tool.
| Name | Type | Description |
|---|---|---|
| Id |
Integer | The ID of the dynamic tool. |
| DateCreated |
DateTime | The date and time that the dynamic tool was created. |
| DateModified |
DateTime | The date and time that the dynamic tool was last modified. |
| Name |
String | The name of the dynamic tool. |
| Type |
DynamicToolType | The type of the dynamic tool. |
| Width |
Integer | The width at which to embed the dynamic tool. |
| Height |
Integer | The height at which to embed the dynamic tool. |
| ResourceUrl |
Url | The address of the dynamic tool on the merchant's website. |
| TargetUrl |
Url | The address of the landing page on the merchant's website. |
| Approved |
Boolean | A flag indicating whether or not the dynamic tool has been approved by Commission Factory administrators. |
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.
{
"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
}
<DynamicTool 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>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>