Hi
Am trying to update my record via the PUT method
$client = new Zend_Http_Client();
$client->setMethod(Zend_Http_Client::PUT);
$client->setUri('http://example.com/api/type/');
$client->setParameterPost(array(
'useremail' => '*****@****.***',
'apikey' => 'secretkey',
'expenseid' => '4',
'description' => 'TEST WEB API',
'amount' => '5000.00',
));
However it does not seem to work.The same also applies to Zend_Http_Client::DELETE. It seems only Zend_Http_Client::POST and Zend_Http_Client::GET are working.
What am I missing?