Example #1
0
 function answer_kba($payload = null)
 {
     if ($payload) {
         $path = $this->create_user_path($this->client->user_id);
         $response = $this->client->patch($path, $payload);
     } else {
         $response = HelperFunctions::create_custom_error_message('payload');
     }
     return $response;
 }