Skip to content

Commit

Permalink
VerifyLookupV2
Browse files Browse the repository at this point in the history
  • Loading branch information
bgsrb committed May 8, 2017
1 parent e5afb42 commit 826a416
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/KavenegarApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -259,17 +259,23 @@ public function AccountConfig($apilogs, $dailyreport, $debug, $defaultsender, $m
}

public function VerifyLookup($receptor, $token, $token2, $token3, $template, $type = null)
{
return VerifyLookupV2($receptor, $template, $type, $token, $token2, $token3, null);
}

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

0 comments on commit 826a416

Please sign in to comment.