Skip to content

Commit 9624cb0

Browse files
ServiceNow Integration - Search Tickets is unable to pass a sysparm_ parameter successfully (#4957)
* Updated service now integration * Updates from review --------- Co-authored-by: John Pipkin <[email protected]>
1 parent 1f89bd5 commit 9624cb0

File tree

1 file changed

+16
-15
lines changed
  • docs/platform-services/automation-service/app-central/integrations

1 file changed

+16
-15
lines changed

docs/platform-services/automation-service/app-central/integrations/servicenow-v2.md

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import useBaseUrl from '@docusaurus/useBaseUrl';
66

77
<img src={useBaseUrl('/img/platform-services/automation-service/app-central/logos/servicenow-v2.png')} alt="servicenow" width="100"/>
88

9-
***Version: 2.5
10-
Updated: May 31, 2024***
9+
***Version: 2.6
10+
Updated: Jan 13, 2025***
1111

1212
ServiceNow V2 SaaS is for technical management support - create, update, and gather ServiceNow ticket information.
1313

@@ -44,26 +44,26 @@ Query used to filter the result set.
4444

4545
Building the query:
4646

47-
Syntax: sysparm\_query=&lt;col\_name&gt;&lt;operator&gt;&lt;value&gt;.
47+
Syntax: `<col_name><operator><value>`
4848

49-
* &lt;col\_name&gt;: Name of the table column to filter against.
50-
* &lt;operator&gt;: Supports the following values:
51-
=: Exactly matches &lt;value&gt;.
52-
!=: Does not match &lt;value&gt;.
53-
^: Logically AND multiple query statements.
54-
^OR: Logically OR multiple query statements.
55-
LIKE: &lt;col\_name&gt; contains the specified string. Only works for &lt;col\_name&gt; fields whose data type is string.
56-
STARTSWITH: &lt;col\_name&gt; starts with the specified string. Only works for &lt;col\_name&gt; fields whose data type is string.
57-
ENDSWITH: &lt;col\_name&gt; ends with the specified string. Only works for &lt;col\_name&gt; fields whose data type is string.
58-
* &lt;value&gt;: 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.
5959

6060
All parameters are case-sensitive.
6161

6262
Queries can contain more than one entry.
6363

64-
For example: sysparm\_query=&lt;col\_name&gt;&lt;operator&gt;&lt;value&gt;[&lt;operator&gt;&lt;col\_name&gt;&lt;operator&gt;&lt;value&gt;]
64+
For example: `<col_name><operator><value>[<operator><col_name><operator><value>]`
6565

66-
For more info please check the official API doc: &lt;https://developer.servicenow.com/dev.do#!/reference/api/sandiego/rest/c_TableAPI#table-GET&gt;
66+
For more information check the [ServiceNow API documentation](https://developer.servicenow.com/dev.do#!/reference/api/xanadu/rest/c_TableAPI#table-GET).
6767

6868
**Create Ticket**
6969

@@ -92,3 +92,4 @@ Ticketing System
9292
* June 30, 2023 (v2.3) - Integration code improved.
9393
* April 5, 2024 (v2.4) - Fixed an issue that prevents the resource testing to work correctly.
9494
* 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

Comments
 (0)