
Creative Tag2
GetCreativeTags2List [finished]
Overlays:
Activation:
GetCreativeTags2List.php ? sessionID = ...
[ & ownerID = ... ]
[ & namePattern = ... ]
[ & commentsPattern = ... ]
[ & isBlocked = ... ]
[ & sortField = ... ]
[ & sortOrder = ... ]
[ & limit = ... ]
[ & offset = ... ]
Description:
Returns secondary creative categories, matching specified criteria.
Parameters:
- sessionID: string(16)
- ownerID: uint
- namePattern: string(255)
- commentsPattern: string(255)
- isBlocked: enum('Y','N')
- sortField: enum('name', 'comments', 'isBlocked', 'creationTS', 'modificationTS')
- sortOrder: enum('asc', 'desc')
- limit: uint
- offset: uint
Results:
<GetCreativeTags2List>
<status>OK</status>
<tagsNumber>1234</tagsNumber>
<tags>
<tag>
<tagID>1234</tagID> : uint
<name>1a</name> : string(255)
<isBlocked>Y</isBlocked> : enum('Y', 'N')
<comments>lala</comments> : string(255)
<creationTS>1242123024</creationTS> : uint
<modificationTS>1242123024</modificationTS> : nullable uint
</tag>
</tags>
</GetCreativeTags2List>
Throw Errors:
AddCreativeTag2 [finished]
Overlays:
Activation:
AddCreativeTag2.php ? sessionID = ...
[ & ownerID = ... ]
& name = ...
[ & comments = ... ]
Description:
Adds a secondary creative category.
Parameters:
- sessionID: string(16)
- ownerID: uint
- name: string(255)
- comments: string
Results:
<AddCreativeTag2>
<status>OK</status>
<tagID>1234</tagID>
</AddCreativeTag2>
Throw Errors:
UpdateCreativeTag2 [finished]
Overlays:
Activation:
UpdateCreativeTag2.php ? sessionID = ... & tagID = ...
[ & name = ... ]
[ & comments = ... ]
[ & isBlocked = ... ]
Description:
Changes a secondary creative category.
Parameters:
- sessionID: string(16)
- tagID: uint
- name: string(255)
- comments: string(255)
- isBlocked: enum('Y','N')
Results:
<UpdateCreativeTag2>
<status>OK</status>
</UpdateCreativeTag2>