DrewM\MailChimp\Batch::delete PHP Method

delete() public method

Add an HTTP DELETE request operation to the batch - for deleting data
public delete ( string $id, string $method ) : void
$id string ID for the operation within the batch
$method string URL of the API request method
return void
    public function delete($id, $method)
    {
        $this->queueOperation('DELETE', $id, $method);
    }