Async message creation
We want to use channels to support facilitating messaging in our app. At first, it looks like custom channels could work pretty well. The only issue is that when a message is first created by the “Receive custom messages” endpoint, we can’t immediately follow up with a query to get the message and conversation id because the message creation is apparently asynchronous. That would make our implementation more complex because we would have to retain the body of the message on our side in order to play back what was sent by the user while we wait for the message to completely flow through Front’s system. Would this be any different if we used application channels instead of custom channels- is the message creation also async when using the “Sync inbound message” API? Thanks!
