You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*<col\_name>: Name of the table column to filter against.
50
-
*<operator>: Supports the following values:
51
-
=: Exactly matches <value>.
52
-
!=: Does not match <value>.
53
-
^: Logically AND multiple query statements.
54
-
^OR: Logically OR multiple query statements.
55
-
LIKE: <col\_name> contains the specified string. Only works for <col\_name> fields whose data type is string.
56
-
STARTSWITH: <col\_name> starts with the specified string. Only works for <col\_name> fields whose data type is string.
57
-
ENDSWITH: <col\_name> ends with the specified string. Only works for <col\_name> fields whose data type is string.
58
-
*<value>: Value to match against.
49
+
*`<col_name>`: Name of the table column to filter against.
50
+
*`<operator>`: Supports the following values:
51
+
*`=:` Exactly matches `<value>`.
52
+
*`!=`: Does not match `<value>`.
53
+
*`^`: Logically AND multiple query statements.
54
+
*`^OR`: Logically OR multiple query statements.
55
+
*`LIKE`: `<col_name>` contains the specified string. Only works for `<col_name>` fields whose data type is string.
56
+
*`STARTSWITH`: `<col_name>` starts with the specified string. Only works for `<col_name>` fields whose data type is string.
57
+
*`ENDSWITH`: `<col_name>` ends with the specified string. Only works for `<col_name>` fields whose data type is string.
58
+
*`<value>`: Value to match against.
59
59
60
60
All parameters are case-sensitive.
61
61
62
62
Queries can contain more than one entry.
63
63
64
-
For example: sysparm\_query=<col\_name><operator><value>[<operator><col\_name><operator><value>]
64
+
For example: `<col_name><operator><value>[<operator><col_name><operator><value>]`
65
65
66
-
For more info please check the official API doc: <https://developer.servicenow.com/dev.do#!/reference/api/sandiego/rest/c_TableAPI#table-GET>
66
+
For more information check the [ServiceNow API documentation](https://developer.servicenow.com/dev.do#!/reference/api/xanadu/rest/c_TableAPI#table-GET).
67
67
68
68
**Create Ticket**
69
69
@@ -92,3 +92,4 @@ Ticketing System
92
92
* June 30, 2023 (v2.3) - Integration code improved.
93
93
* April 5, 2024 (v2.4) - Fixed an issue that prevents the resource testing to work correctly.
94
94
* May 31, 2024 (v2.5) - Fixed an issue in actions **Create Ticket** and **Update Ticket** in which the JSON Query field was not visible.
95
+
* Jan 13, 2025 (v2.6) - Modified hint of the **query** field as it was misleading.
0 commit comments