{{category.field}} and can be used in operation parameters, headers, and URLs.
Player Data
Access information stored on the player record:| Value | Description |
|---|---|
{{contact.playerId}} | Player identifier |
{{contact.email}} | Player email |
{{contact.firstName}} | First name |
{{contact.lastName}} | Last name |
{{contact.phone}} | Phone number |
{{contact.customAttributes.X}} | Any custom attribute (replace X with attribute name) |
{{contact.customAttributes.sessionId}}- Session identifier{{contact.customAttributes.vipLevel}}- Player tier
Ticket Data
Access current support ticket context:| Value | Description |
|---|---|
{{supportTicket.id}} | Ticket ID |
{{supportTicket.humanId}} | Human-readable ticket number |
Workspace Data
Access workspace configuration:| Value | Description |
|---|---|
{{workspace.companyName}} | Workspace name |
{{workspace.boApiUrl}} | Back-office API base URL |
Brand Data
Access brand-specific values (useful for multi-brand setups):| Value | Description |
|---|---|
{{brand.code}} | Brand code |
{{brand.apiDomain}} | Custom API domain for this brand |
Date Values
Generate timestamps relative to the current time. Respects workspace timezone.| Value | Result |
|---|---|
{{date.today}} | Current date/time |
{{date.yesterday}} | 1 day ago |
{{date.tomorrow}} | 1 day ahead |
{{date.7dAgo}} | 7 days ago |
{{date.30dAgo}} | 30 days ago |
{{date.NdAgo}} | N days ago (any number) |
Date Formatting
Add format modifiers for different output formats:| Value | Result |
|---|---|
{{date.today}} | 2025-01-15T14:30:00.000Z (ISO with timezone) |
{{date.today|format:'YYYY-MM-DD'}} | 2025-01-15 |
{{date.today|format:'noZ'}} | 2025-01-15T14:30:00 (no timezone) |
{{date.today|format:'unix'}} | 1736952600 (seconds) |
{{date.today|format:'unixMs'}} | 1736952600000 (milliseconds) |
Operation Parameters
Use{{param.paramName}} to reference other parameters in the same operation. This is useful for building RESTful URLs:
Example: Transaction lookup operation
- URL:
https://api.example.com/transactions/{{param.transactionId}} - Parameter:
transactionId- The transaction ID to look up
Fallbacks and Defaults
Values support fallback chains and default values:contact.playerId first, then contact.customAttributes.playerId, then falls back to the literal string 'unknown'.