We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e459ee commit eaabb8aCopy full SHA for eaabb8a
.env-example
@@ -4,6 +4,7 @@ APPLICATION_ID=
4
PRIVATE_KEY=
5
FROM=
6
NEXMO_TO_NUMBER=
7
+RECIPIENT_NUMBER
8
TO_NUMBER=
9
NEXMO_SECRET_ID=
10
INSIGHT_NUMBER=
verify/request.php
@@ -5,7 +5,7 @@
$basic = new \Nexmo\Client\Credentials\Basic(NEXMO_API_KEY, NEXMO_API_SECRET);
$client = new \Nexmo\Client(new \Nexmo\Client\Credentials\Container($basic));
-$verification = new \Nexmo\Verify\Verification(NEXMO_TO_NUMBER, 'Acme Inc');
+$verification = new \Nexmo\Verify\Verification(RECIPIENT_NUMBER, 'Acme Inc');
$client->verify()->start($verification);
11
echo "Started verification, `request_id` is " . $verification->getRequestId();
0 commit comments