Service Now: Interactions
Summary
This module contains actions related to ServiceNow Interactions.
Minimum Plugin Version: 6.0.0
Actions
service_now.interactions.
get_by_number
Get an interaction by its number.
Minimum Plugin Version: 6.0.0
Input
-
access_details: an AccessDetails Dictionary
-
number: the interaction number to search for
Output
A single Interaction Dictionary.
Interaction Numbers
ServiceNow interaction numbers are not unique by default, but for simplicity this action assumes they are.
If you do have shared interaction numbers, you can use the search action to get multiples.
Example
1 2 3 4 5 |
|
service_now.interactions.
get_by_number_interactive
Interactively search for an interaction using the number field.
Minimum Plugin Version: 6.0.0
Input
- access_details: an AccessDetails Dictionary
Output
Example
1 2 3 4 |
|
service_now.interactions.
input_table
Display a list of interactions in a table, & allow the task operator to make a selection.
The table will have the following columns:
- Number
- Short Description
- State
- Assigned To
- Active
Minimum Plugin Version: 6.0.0
Input
-
text: The title of the table
-
interaction_list: A list of Interaction Dictionaries to display in the table
-
minimum: The minimum number of acceptable selections
-
maximum: The maximum number of acceptable selections
Output
A list of Interaction Dictionaries.
Tip
- If neither a minimum or maximum is provided, the task operator will be able to submit 0 selections.
- If minimum or maximum are provided, the operation will repeat until the task operator makes a valid number of selections.
Example
1 2 3 4 5 6 7 8 9 10 11 12 |
|
service_now.interactions.
output_table
Display a list of interactions in a table.
The table will have the following columns:
- Number
- Short Description
- State
- Assigned To
- Active
Minimum Plugin Version: 6.0.0
Input
-
text: the title of the table
-
interaction_list: a list of Interaction Dictionaries to display in the table
Output
Nothing is outputted by this action.
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
|
service_now.interactions.
search
Search for interactions. Supports multiple search fields and values.
Advanced search techniques & filters are not supported yet.
Each supplied field & value will be converted to field=value in the search query.
Minimum Plugin Version: 6.0.0
Input
-
access_details: an AccessDetails Dictionary
-
search_params: a dictionary containing Interaction fields and values
Output
A list of Interaction Dictionaries.
Example
Searching for all active interactions.
1 2 3 4 5 |
|