## Delete `client.contacts.delete(stringphoneNumber, RequestOptionsoptions?): ContactDeleteResponse` **delete** `/api/v2/contacts/{phone_number}` Delete a specific contact ### Parameters - `phoneNumber: string` ### Returns - `ContactDeleteResponse` - `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 contact = await client.contacts.delete('+1234567890'); console.log(contact.status); ```