csharp-rest-api
csharp-rest-api copied to clipboard
WhatsApp sandbox - Can Not Send WhatsApp Sandbox message after updating nuget to version 3
https://github.com/messagebird/csharp-rest-api/pull/87 I updated MessageBird nuget package to version 3.0.0
accesskey, channelid and conversationid parameters are from WhatsApp Sandbox page.
When i want to send message, i get error NotFound description: 'Conversation not found' parameter: ''
What can be wrong here ?
Client _client= Client.CreateDefault("accesskey");
ConversationMessageSendRequest _request = new ConversationMessageSendRequest()
{
ChannelId = "channelid",
Type = ContentType.Text,
ConversationId = "conversationid",
Content = new Content() { Text = "hello" }
};
ConversationMessage message = _client.SendConversationMessage(_request.ConversationId, _request);
this issue still persists. Nuget V3 can not send messages in WhatsApp Sandbox. Any update ?
Any update on this ?