Lines Matching refs:api_key
49 private $api_key = false; variable in phpipam_api_client
219 * @param bool|string $api_key (default: false)
224 …public function __construct($api_url = false, $app_id = false, $api_key = false, $username = false… argument
234 if ($api_key!==false) {
235 $this->set_api_key ($api_key);
367 if($this->api_key !== false)
469 * @param bool $api_key (default: false)
472 public function set_api_key ($api_key = false) { argument
474 if ($api_key!=false) {
475 $this->api_key = $api_key;
716 …$encrypted_request = base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $this->api_key, json_encode…