Back to Documentation Overview
campaignDelete
public static campaignDelete(string apikey, string cid)
Delete a campaign. Seriously, "poof, gone!" - be careful!
- Section:
- Campaign Related
- Parameters:
apikey a valid API Key for your user account. Get by calling Get by visiting your API dashboard cid the Campaign Id to delete - Returns:
- boolean - true if the delete succeeds, otherwise an error will be thrown
- <?php
- /**
- This Example shows how to send Delete Campaigns via the MCAPI class.
- **/
- require_once 'inc/MCAPI.class.php';
- require_once 'inc/config.inc.php'; //contains apikey
- $retval = $api->campaignDelete($campaignId);
- if ($api->errorCode){
- } else {
- }
Examples (1)
download example code[1] mcapi_campaignDelete.php
|
Add New Note
User Contributed Notes for
campaignDelete |
|---|
| No notes, yet... Will you be the first?? |