Variables
Here you will find a description of the variables that are available to you when scripting in Unifi.
Integration
Add note script
The Add Note Script is used to notify the end user about integration events. These notes are automatically added during processing and the script allows the target of the note to be customised. E.g., notes are usually added to work notes on Task-based tables, but a custom table might have a different field for this.
Variable | Type | Description |
| GlideRecord | The target record to update, e.g. an Incident record. |
| String | The update message. |
| Object | An object containing specific properties depending on the note being added. |
| String | The name of the integration. |
| GlideRecord | The Only provided with response action notification. |
| String | The type of note: Only provided with Bond specific notes. |
| Object | Object used to contain Connection Variables. |
| Object | Object containing several functions that can be used for logging. |
| String | The error message to return from the script. Alternatively you can simply throw a |
Identify message script
The Identify Message Script is executed when an inbound request is received. It returns the name of the message that should be used to process the request. Typically, message names are embedded within the request payload, but it's possible to use the other variables available for more complex identification.
Variable | Type | Description |
| Any | The payload string or object. Pre-processing can be configured on the Integration to automatically convert JSON to |
| Object | An object containing the request headers. |
| Object | A key-value pair object of URL parameters. |
| GlideRecord | The |
| GlideRecord | The |
| Object | Object used to contain Connection Variables. |
| Object | Object containing several functions that can be used for logging. |
| String | The error message to return from the script. Alternatively you can simply throw a |
Connection
Endpoint URL
The Endpoint URL will be prepended to Message Path values (providing they do not override). Inline scripts using curly braces {}
can be used to construct more advanced endpoints.
See Message Path parameters for available variables.
We recommend dynamic endpoints only be considered for the same environment. New environments should have new connections so they can be managed more easily.
Message
Advanced condition
The Advanced condition is used to script complex trigger logic into the message. Only use this if you cannot use the Outbound condition filters and the single line Outbound condition.
See Outbound condition parameters for available variables.
Extract attachments script
Attachments can be extracted from payloads and saved before the payload is saved. This is highly recommended as it saves from storing the attachment itself in the payload on the HTTP Request record.
Attachment data should be extracted, saved as an attachment, and replaced with the attachment sys_id in the format <x-attachment-data sys_id="...">
. Unifi will automatically collect the attachment ids, create Bonded Attachments for each of them, and finally move the attachments to the target record.
Streaming is better. Attachments can be streamed into Unifi which bypasses the need for extraction, supports binary file sharing, and also allows for sizes up to 50MB (providing your instance and integration configuration supports this).
This is available for all new integrations from Unifi 3.0. Contact us for information on how to do this with previous versions.
Variable | Type | Description |
| String|Stream | The raw inbound payload object to process. Attachment data should be removed and replaced with the attachment sys_id in the format "<x-attachment-data sys_id=> |
| Object | An object containing the request headers. |
| Object | A key-value pair object of URL parameters. |
| GlideRecord | The record of the |
| Object | An object containing specific properties for processing. |
| Boolean | True if the inbound payload is a stream. |
| Object | Object containing several functions that can be used for logging. |
| String | The error message to return from the script. Alternatively you can simply throw a |
Path
The Path is used to modify the endpoint for the message. It can be used with inline script evaluation to construct more advanced endpoints. Inline scripts should be wrapped with dollar curly braces ${...}
.
Variable | Type | Description |
| Any | The payload string or object. Pre-processing can be configured on the Integration to automatically convert JSON to |
| Object | An object containing the request headers. |
| GlideRecord | The |
| GlideRecord | The |
| Object | The dynamic stage which is automatically stored on the stage record. |
| GlideRecord | The current |
| Object | Instance of Unifi Bond class. |
| GlideRecord | The record of the |
| Object | An object that can be used to pass variables between scripts. |
| Object | Object containing several functions that can be used for logging. |
| String | The error message to return from the script. Alternatively you can simply throw a |
Outbound condition
The outbound condition is an inline script field useful for simple one-line conditions to be used in conjunction with the filter.
More advanced conditions can be made in the Advanced condition script field.
Variable | Type | Description |
| GlideRecord | The record that triggers the message. The actual table will differ between Processes. |
| GlideRecord | The record of the |
| Object | Object used to contain Connection Variables. |
| Object | Object containing several functions that can be used for logging. |
| String | The error message to return from the script. Alternatively you can simply throw a |
Reference lookup script
The Reference lookup script is used to extract the internal and external message ID's when an inbound request is received. These ID's are used to locate the bond (and therefore the target) the request applies to.
Variable | Type | Description |
| Any | The payload string or object. Pre-processing can be configured on the Integration to automatically convert JSON to |
| GlideRecord | The record of the |
| Any | The result of the script being called. |
| GlideRecord | The record that triggers the message. The actual table will differ between Processes. |
| GlideRecord | The record of the |
| Object | Object used to contain Connection Variables. |
| Object | Object containing several functions that can be used for logging. |
| String | The error message to return from the script. Alternatively you can simply throw a |
XML Template
The XML Template is evaluated in a similar way to a UI Macro and is extremely useful in constructing advanced XML based payloads using Jelly. Other types of payload can be constructed here, however it's normally easier to do this with the Fields and Field Maps or directly in the Message Scripts.
The XML Template will only be evaluated if the payload has not already been set within the Stage to Request message script.
Install the Unifi Global Utility for full support of Jelly within XML Templates.
Variable | Type | Description |
| Any | The payload string or object. Pre-processing can be configured on the Integration to automatically convert JSON to |
| Object | An object containing the request headers. |
| GlideRecord | The |
| GlideRecord | The |
| Object | The dynamic stage which is automatically stored on the stage record. |
| GlideRecord | The current |
| Object | Instance of Unifi Bond class. |
| GlideRecord | The record of the |
| Object | An object that can be used to pass variables between scripts. |
| Object | Object containing several functions that can be used for logging. |
| String | The error message to return from the script. Alternatively you can simply throw a |
Message Script
Source to Stage (Outbound)
The Source to Stage script is used to capture data from the source record, e.g., an Incident, and save it to the stage record where it is ready to be used to generate a payload.
Source data values should be captured in full (including referenced values) in the Source to Stage script.
Variable | Type | Description |
| GlideRecord | The record that is being integrated. |
| GlideRecord | The record of the |
| Object | The dynamic stage object. |
| GlideRecord | The record of the |
| Object | Instance of Unifi Bond class. |
| GlideRecord | The record of the |
| Object | Object used to contain Connection Variables. |
| Object | Object containing several functions that can be used for logging. |
| String | The error message to return from the script. Alternatively you can simply throw a |
Stage to Request (Outbound)
The Stage to Request script is used to generate a payload using the data captured on the stage.
Payload generation and request configuration should be done in the Stage to Request script.
Variable | Type | Description |
| Any | The payload string or object. Pre-processing can be configured on the Integration to automatically convert JSON to |
| Object | An object containing the request headers. |
| GlideRecord | The |
| GlideRecord | The |
| Object | The dynamic stage which is automatically stored on the stage record. |
| GlideRecord | The current |
| Object | Instance of Unifi Bond class. |
| GlideRecord | The record of the |
| Object | An object that can be used to pass variables between scripts. |
| Object | Object containing several functions that can be used for logging. |
| String | The error message to return from the script. Alternatively you can simply throw a |
Payload to Stage (Inbound)
The Payload to Stage script is used to capture data from the inbound request payload and save it to the stage record where it is ready to be used to update the target record.
Data should be extracted from the inbound payload and headers in the Payload to Stage script.
Variable | Type | Description |
| Any | The payload string or object. Pre-processing can be configured on the Integration to automatically convert JSON to |
| Object | An object containing request headers keyed by header name. |
| GlideRecord | The |
| GlideRecord | The |
| Object | The dynamic stage which is automatically stored on the stage record. |
| GlideRecord | The current |
| GlideRecord | The record of the |
| Object | Object used to contain Connection Variables. |
| Object | Object containing several functions that can be used for logging. |
| String | The error message to return from the script. Alternatively you can simply throw a |
Stage to Target (Inbound)
The Stage to Target script is used to update the target record, e.g., an Incident, with the data and references given in the stage.
Reference lookups, data validation, and business logic should be done in the Stage to Target script.
Variable | Type | Description |
| GlideRecord | The record that is being integrated. |
| GlideRecord | The record of the |
| Object | The dynamic stage object. |
| GlideRecord | The record of the |
| Object | Instance of Unifi Bond class. |
| GlideRecord | The record of the |
| Object | Object used to contain Connection Variables. |
| Object | Object containing several functions that can be used for logging. |
| String | The error message to return from the script. Alternatively you can simply throw a |
Field
Default inbound
The default inbound script can be used so set the default value to be used by the Field Map when no value is found on the stage.
See Stage to Target (Inbound) for available variables.
Default outbound
The default outbound script can be used so set the default value to be used by the Field Map when no value is found on the source.
See Source to Stage (Outbound) for available variables.
Field Map
Fields maps are compiled during Build operations with the field as an input and the resulting code is added to the respective Message Scripts.
Only code contained within dollar-square brackets $[...]
will be compiled. During inbound/outbound processing, standard Message Script variables will apply.
Variable | Type | Description |
| GlideRecord | The record of the |
Response Action
The Response Action script is executed when Run Script is checked. It can be used to do anything based on a response to an outbound request.
Variable | Type | Description |
| GlideRecord | The current |
| Object | Instance of Unifi Bond class. |
| GlideRecord | The record of the |
| GlideRecord | The record of the |
| GlideRecord | The record of the |
| Any | A pre-processed payload string or object. |
| GlideRecord | The record of the |
| Object | Object containing several functions that can be used for logging. |
Event Action
Variable | Type | Description |
| GlideRecord | The record of the |
| GlideRecord | The current |
Last updated