Beispiel #1
0
 /**
  * Obtain all WebHook resources for the provided token.
  *
  * @param array $params Parameters. Options: token
  * @param ApiContext $apiContext is the APIContext for this call. It can be used to pass dynamic configuration and credentials.
  * @param BlockCypherRestCall $restCall is the Rest Call Service that is used to make rest calls
  * @return WebHook[]
  */
 public function getAll($params = array(), $apiContext = null, $restCall = null)
 {
     ArgumentGetParamsValidator::validate($params, 'params');
     $allowedParams = array('token' => 1);
     $params = ArgumentGetParamsValidator::sanitize($params, $allowedParams);
     $payLoad = "";
     $chainUrlPrefix = $this->getChainUrlPrefix($apiContext);
     $json = $this->executeCall("{$chainUrlPrefix}/hooks?" . http_build_query($params), "GET", $payLoad, null, $apiContext, $restCall);
     return WebHook::getList($json);
 }