Learn how custom fields make your AI prompts dynamic and personalized by automatically inserting user-specific information
{FirstName}
and {AccountNumber}
Field | What It Does | Example Output |
---|---|---|
{FirstName} | Inserts the userβs first name | βHello Johnβ |
{LastName} | Inserts the userβs last name | βMr. Smithβ |
{FullName} | Inserts complete name | βJohn Smithβ |
Field | What It Does | Example Output |
---|---|---|
{today} | Current date | βToday is March 15, 2024β |
{time_zone} | Userβs time zone | βYour time zone is +05:00β |
today
should be left blank when trying to make a call either via Agent Call, Campaign Run, Or API. Vodex will fill it automatically using time_zone
field time_zone
field must be a valid time zone field. The time zone can be Asia/Kolkata or +05:30. If any other is provided, an unexpected error Something went wrong
will be thrown Field | What It Does | Example Output |
---|---|---|
{AccountNumber} | Userβs account ID | βAccount 12345β |
{AmountDue} | Outstanding balance | βBalance of $500.00β |
{DueDate} | Payment deadline | βDue by March 30, 2024β |
β Correct | β Wrong | Why It Matters |
---|---|---|
{FirstName} | {First Name} | Spaces cause errors |
{AccountNumber} | {Account Number} | System canβt find the field |
{AmountDue} | {Amount Due} | Data retrieval fails |
{FirstName}
and {today}