CloudConvert\Api::delete PHP Method

delete() public method

Wrap call to CloudConvert APIs for DELETE requests
public delete ( string $path, string $content = null, boolean $is_authenticated = true )
$path string path ask inside api
$content string content to send inside body of request
$is_authenticated boolean if the request use authentication
    public function delete($path, $content = null, $is_authenticated = true)
    {
        return $this->rawCall("DELETE", $path, $content, $is_authenticated);
    }