Skip to content

Commit

Permalink
update VerifyLookup
Browse files Browse the repository at this point in the history
  • Loading branch information
bgsrb authored Nov 27, 2016
1 parent c0bf397 commit 9312437
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/KavenegarApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -258,15 +258,16 @@ public function AccountConfig($apilogs, $dailyreport, $debug, $defaultsender, $m
return $this->execute($path, $params);
}

public function VerifyLookup($receptor, $token, $token2, $token3, $template)
public function VerifyLookup($receptor, $token, $token2, $token3, $template, $type)
{
$path = $this->get_path("lookup", "verify");
$params = array(
"receptor" => $receptor,
"token" => $token,
"token2" => $token2,
"token3" => $token3,
"template" => $template
"template" => $template,
"type" => $type
);
return $this->execute($path, $params);
}
Expand Down

0 comments on commit 9312437

Please sign in to comment.