my $content = 'some really important content'; my $HttpReq = HTTP::Request->new( DELETE => $myUrl ); $HttpReq->content_type( 'application/x-www-form-urlencoded' ); $HttpReq->content( $content ); $HttpReq->header( 'Content-Length' => length( $content ) );