Send
Send a typing indicator
client.typingIndicators.send(TypingIndicatorSendParamsbody, RequestOptionsoptions?): error_messageunionnumberstringstatusunionTypingIndicatorSendResponse
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. Only available for existing chats and not supported in group chats.
Parameters
bodynumberstringTypingIndicatorSendParams
Returns
TypingIndicatorSendResponse
import SendblueAPI from 'sendblue';
const client = new SendblueAPI({
apiKey: 'My API Key',
apiSecret: 'My API Secret',
});
const response = await client.typingIndicators.send({ number: '+19998887777' });
console.log(response.error_message);
200 Example
{
"error_message": null,
"number": "+19998887777",
"status": "SENT"
}