No. Pushwoosh does not evaluate external variables (like $user_first_name) passed in the JSON value. Your backend must compute and pass the final, resolved string (literal value) for that specific message.
- Incorrect:
"firstname": "$user_first_name"(The system will print "$userfirstname" literally). - Correct:
"firstname": "John"(The system will print "John").
Comments
0 comments
Please sign in to leave a comment.