Verify
Verify a contact
client.contacts.verify(ContactVerifyParams { number } body, RequestOptionsoptions?): ContactVerifyResponse { status }
/api/v2/contacts/verify
Send a verification message to a contact
Parameters
Returns
Verify a contact
import SendblueAPI from 'sendblue';
const client = new SendblueAPI({
apiKey: 'My API Key',
apiSecret: 'My API Secret',
});
const response = await client.contacts.verify({ number: 'number' });
console.log(response.status);
{
"status": "OK"
}
Returns Examples
{
"status": "OK"
}