This API exposes operations to allow management of Text Creative features within the Cxense Advertising platform.
This API can be accessed by users with the appropriate permissions to manage Text Creative features and supports the following combination of operations on Text Creative feature domain objects:
|
Object |
Supported operations |
|---|---|
|
Text Creative feature list |
GET |
|
Text Creative feature |
POST, GET, PUT and DELETE |
Retrieving the list of TextCreative features saved against a Campaign or Ad
The GET operation is supported for listing existing TextCreative features.
GET
Retrieve all of the TextCreative features saved at or below the Campaign or Ad with the given parentId. One call using the id of a Campaign will return all of the TextCreative features stored against the Campaign and all of Ads in a single response.
|
Parameters:
-
cxadbaseurl the base URL of the Cxense Advertising system
-
parentId the id of either a Campaign or Ad for which the TextCreative features are to be retrieved
Example command:
|
Individual TextCreative features
The POST, GET, PUT and DELETE operations are supported for management of individual TextCreative features.
POST
Create a new TextCreative feature under the Campaign or Ad with the given parentId.
|
Parameters:
-
cxadbaseurl the base URL of the Cxense Advertising system
-
parentId the id of either a Campaign or Ad under which the new TextCreative feature is to be created
This XML example shows the contents required to be supplied for a POST call:
|
Example command:
|
GET
Retrieve the TextCreative feature with the given featureId
|
Parameters:
-
cxadbaseurl the base URL of the Cxense Advertising system
-
featureId the id of the TextCreative feature to be retrieved
Example command:
|
PUT
Update the TextCreative feature with the given featureId
|
Parameters:
-
cxadbaseurl the base URL of the Cxense Advertising system
-
featureId the id of the TextCreative feature to be updated
Example command:
|
DELETE
Delete the TextCreative feature with the given featureId
|
Parameters:
-
cxadbaseurl the base URL of the Cxense Advertising system
-
featureId the id of the TextCreative feature to be deleted
Example command:
|