Send a typing indicator
client.typingIndicators.send(TypingIndicatorSendParams { from_number, number } body, RequestOptionsoptions?): TypingIndicatorSendResponse { error_message, number, status }
POST/api/send-typing-indicator
Send an indication that you are typing to a user. This shows up as the animated three dots on the recipient's device. Not supported in group chats.
Parameters
Returns
Send a typing indicator
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.typingIndicators.send({
from_number: '+16292925296',
number: '+19998887777',
});
console.log(response.error_message);{
"error_message": null,
"number": "+19998887777",
"status": "SENT"
}Returns Examples
{
"error_message": null,
"number": "+19998887777",
"status": "SENT"
}