Ergo\Http\Client::post PHP Method

post() public method

Sends a POST request
public post ( $path, $body, $contentType = null ) : Response
return Response
    function post($path, $body, $contentType = null)
    {
        return $this->_dispatchRequest($this->_buildRequest('POST', $path, $body, $contentType));
    }