Hello,
Sometimes, when I scheduled a callback it wont appear in the Scheduled Callbacks page. Since I'm using the Javascript SDK, and the service [ postConversationParticipantCallbacks ] doesnt get any response, I have no way to validate the operation's success.
Anytime I run a "Promise" and get into "then", I assume that the operation ends successfully. Can I assume that? How can I validate the server's operation since I have no body response?
That API is documented as returning a 201 response on success with no body. As long as you don't receive an error, the callback should have been created successfully. Aside from getting a successful response, you can validate that the callback exists by retrieving the full conversation object and looking for the callback that wasn't there before.
Thank you for the sugestion.
Funny thing, since I started to ask for the full conversation in the "then", coincidentally all the callbacks started to be scheduled correctly.