HttpRequestService::_POST PHP Method

_POST() public method

POST wrapper for insert data
public _POST ( $url, $params = null, $username = null, $password = null, $contentType = null ) : RESTClient
$url String
$params mixed
$username String
$password String
$contentType String
return RESTClient
    public function _POST($url, $params = null, $username = null, $password = null, $contentType = null)
    {
        $response = $this->call($url, 'POST', $params, $username, $password, $contentType);
        //$this->convertEncoding($response,'utf-8',$this->_encode)
        return $this->json_foreach($this->parseResponse($response));
    }