This is a slightly far out idea but important for us to understand given the context constraints that Outbound WhatsApp notifications come with.
Givens:
Firstly, on the yellow platform there is this quick_reply_event where a particular quick reply string is accessed via {{data.event.data}} based on which certain messages/journeys can be triggered in response to an Outbound WhatsApp notification.
Secondly, each WhatsApp notification when triggered by the yellow api returns a msgId whether or not a message was delivered. Something like “Oh4-ismNrbxE0XNwZNfZO”.
Question:
Is it possible to capture this msgId back (Oh4-ismNrbxE0XNwZNfZO) as a string when a quick_reply_event is triggered? The idea here is for us to allow some contextualisations on our backend for customers who have >1 similar items in their account where a msgId can then be used to map to the index of a particular item.
To illustrate my point:
A whatsapp notification is sent with a CTA saying “Hello” with a msgId of 123abc.
123abc is mapped to a string called Apple on our backend.
User clicks on the Hello quick reply cta triggering a quick_reply_event message which returns a message “hey there” and triggers an endpoint which sends back the message id 123abc to our servers giving us context that the quick reply cta has been clicked by the user in the context of this Apple item.
Is this possible @Pratik and team?