Reputation: 47
I created a simple example to collect information when someone types in something like: GIVE missions where GIVE is the task and missions is an example alphanumeric field value. When I test this, the value of the alphanumeric field gets truncated to the first letter and capitalized.
In the Train area I have this: Give {test_var} where test_var is type Twilio.ALPHANUMERIC
I would expect to get the whole value back and not just the first letter.
Upvotes: 0
Views: 342
Reputation: 48
Twilio.ALPHANUMERIC follows the logic below:
123DJENJ
one two three
-> 123
alpha beta charlie 12
-> ABC12
yee as in echo
-> E
to boost the performance in voice channels.We will improve our documentation on this. Thanks for bringing this up.
In your case, you might just need to define a custom field type for test_var
to collect what you want. For custom field types, Autopilot won't do any extra post-processing.
Upvotes: 3