REST Service Request Parameters
Hi,
I'd be glad of some help here (if at all possible). I am trying to utilize a JSON API with the REST Service. The vendor's documentation directs user to send three parameters in the request body. These are:
(1) hashedKey
(2) salt
(3) params
I'm very stuck with (1) and (2). The description for the 'hashedKey' (1) is:
hashedKey = MD5 (yourSecretKey + yourRandomSalt)
in PHP and example would be:
$this-secretKey = $"MySecretKey";
$this-salt = rand(1,999999);
$this-hashedKey = md5($this-secretKey . $this-salt);
The vendors documentation is available here:
http://docs.kumulos.com/reference/lan...
I be really extremely grateful if anyone can point me in the right direction.