Decline an order
This function performs TWO critical operations:
The order information is automatically retrieved from the message.
// Decline an order with a noteawait WPP.order.decline({ msgId: 'message_id_here', declineNote: 'Sorry, we cannot fulfill this order at this time'});// Decline without a noteawait WPP.order.decline({ msgId: 'message_id_here'}); Copy
// Decline an order with a noteawait WPP.order.decline({ msgId: 'message_id_here', declineNote: 'Sorry, we cannot fulfill this order at this time'});// Decline without a noteawait WPP.order.decline({ msgId: 'message_id_here'});
Decline an order
This function performs TWO critical operations:
The order information is automatically retrieved from the message.