## Verify `client.contacts.verify(ContactVerifyParamsbody, RequestOptionsoptions?): ContactVerifyResponse` **post** `/api/v2/contacts/verify` Send a verification message to a contact ### Parameters - `body: ContactVerifyParams` - `number: string` Phone number to verify ### Returns - `ContactVerifyResponse` - `status?: string` ### Example ```typescript import SendblueAPI from 'sendblue'; const client = new SendblueAPI({ apiKey: process.env['SENDBLUE_API_API_KEY'], // This is the default and can be omitted apiSecret: process.env['SENDBLUE_API_API_SECRET'], // This is the default and can be omitted }); const response = await client.contacts.verify({ number: 'number' }); console.log(response.status); ```