
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
@sinch/verification
Advanced tools
This package contains the Sinch Verification SDK for Node.js for use with Sinch APIs. To use it, you will need a Sinch account. Please sign up or log in if you already have one.
We recommend to use this SDK as part of the @sinch/sdk-core package in order to make the most out of all the Sinch products.
However, it's still possible to use this SDK standalone is you need to access the Verification API only.
npm install @sinch/verification
yarn add @sinch/verification
The Verification API uses the Application Signed Request to authenticate against the server. You will need to provide the following credentials:
If you are using this SDK as part of the Sinch SDK (@sinch/sdk-core) you can access it as the verification property of the client that you would have instantiated.
import {
Verification,
SinchClient,
ApplicationCredentials,
VerificationService,
} from '@sinch/sdk-core';
const credentials: ApplicationCredentials = {
applicationKey: 'APPLICATION_ID',
applicationSecret: 'APPLICATION_SECRET',
};
// Access the 'verification' service registered on the Sinch Client
const sinch = new SinchClient(credentials);
const verificationService: VerificationService = sinch.verification;
// Build the request data
const requestData: Verification.StartSmsVerificationRequestData = {
startVerificationWithSmsRequestBody: {
identity: {
type: 'number',
endpoint: '+17813334444',
},
smsOptions: {
codeType: 'Alphanumeric',
locale: 'sv-SE',
},
},
};
// Use the 'verification' service registered on the Sinch client
const startVerificationResponse: Verification.StartSmsVerificationResponse
= await verificationService.startVerifications.startSms(requestData);
The SDK can be used standalone if you need to use only the Verification APIs.
import {
ApplicationCredentials
} from '@sinch/sdk-client';
import {
Verification,
VerificationService,
} from '@sinch/verification';
const credentials: ApplicationCredentials = {
applicationKey: 'APPLICATION_ID',
applicationSecret: 'APPLICATION_SECRET',
};
// Declare the 'verification' service in a standalone way
const verificationService = new VerificationService(credentials);
// Build the request data
const requestData: Verification.StartSmsVerificationRequestData = {
startVerificationWithSmsRequestBody: {
identity: {
type: 'number',
endpoint: '+17813334444',
},
smsOptions: {
codeType: 'Alphanumeric',
locale: 'sv-SE',
},
},
};
// Use the standalone declaration of the 'verification' service
const startVerificationResponse: Verification.StartSmsVerificationResponse
= await verificationService.startVerifications.startSms(requestData);
All the methods that interact with the Sinch APIs use Promises. You can use await in an async method to wait for the response, or you can resolve them yourself with then() / catch().
// Method 1: Wait for the Promise to complete (you need to be in an 'async' method)
let startVerificationResponse: Verification.StartSmsVerificationResponse;
try {
startVerificationResponse = await verificationService.startVerifications.startSms(requestData);
console.log(`Verification ID = ${startVerificationResponse.id}`);
} catch (error: any) {
console.error(`ERROR ${error.statusCode}: Impossible to start the verification for the number ${requestData.startVerificationWithSmsRequestBody.identity.endpoint}`);
}
// Method 2: Resolve the promise
verificationService.startVerifications.startSms(requestData)
.then(response => console.log(`Verification ID = ${response.id}`))
.catch(error => console.error(`ERROR ${error.statusCode}: Impossible to start the verification for the number ${requestData.startVerificationWithSmsRequestBody.identity.endpoint}`));
Developer Experience team: devexp@sinch.com
FAQs
Sinch Verification API
The npm package @sinch/verification receives a total of 2,641 weekly downloads. As such, @sinch/verification popularity was classified as popular.
We found that @sinch/verification demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.