gabrieldwight / Whatsapp-Business-Cloud-Api-Net

This is C# wrapper of whatsapp business cloud api for .NET
MIT License
298 stars 119 forks source link

Send bulk messages #62

Closed jayadevc closed 9 months ago

jayadevc commented 9 months ago

I was trying to send bulk messages by adding comma separated phone numbers in RecipientPhoneNumber, but getting invalid parameter error.

TextMessageRequest textMessageRequest = new(); textMessageRequest.To = "1122334455,1122334456";

Is there an alternative to send bulk messages in single api?

gabrieldwight commented 9 months ago

Cloud api currently does not support bulk messages in single API call. You will have to do your own implementation to manage sending messages in bulk.