Delete a group from your account

Delete a group from your account

PHP GET

    <?php
        $key = "ewjd824g"; //Account key. Get it from account settings
        $secret = "wwe89rh3qb083r7h30b0d0u8rh033jf39h8r0f3"; //Account secret. Get it from account settings
        $groupToDelete = "2014list";
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, "https://api.smsjuice.com/groups/{$key}/{$secret}/{$groupName}");
        curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "DELETE");
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
        curl_setopt($ch, CURLOPT_HEADER, FALSE);
        $response = curl_exec($ch);
        curl_close($ch);

        var_dump($response);            

PHP SDK

    <?php
        include("../class/ContactGroup.class.php");
        include("../TextMessagingService.php");

        use TextMessagingService;
        
        //get ALL groups on your account
        echo TextMessagingService::deleteGroup($key, $secret, $groupName);        
    ?>

Parameters

Parameter Description Required
key account authentication key
secret account authentication secret
groupName name of group to be deleted

Response

{
"operation": "successful"
}

Success Response Codes

Success Response Description
successful delete was a success

Errors

{
    "operation":"failed",
    "error":"Group 'mixture2' does not Exist."
}      

Error Response Codes

Error Response Description
invalid_credentials Invalid API key and/or secret
Group does not exist Group does not exist