From ed0b57dcfdaaa1ccf4ccb7d1650b10de1a1adc0a Mon Sep 17 00:00:00 2001 From: Greg Brownstein Date: Mon, 13 Oct 2025 19:18:58 -0400 Subject: [PATCH 1/3] fix #281 --- ServiceNow/Private/Invoke-ServiceNowRestMethod.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ServiceNow/Private/Invoke-ServiceNowRestMethod.ps1 b/ServiceNow/Private/Invoke-ServiceNowRestMethod.ps1 index 9345968..b114436 100644 --- a/ServiceNow/Private/Invoke-ServiceNowRestMethod.ps1 +++ b/ServiceNow/Private/Invoke-ServiceNowRestMethod.ps1 @@ -127,7 +127,7 @@ function Invoke-ServiceNowRestMethod { } if ($Property) { - $Body.sysparm_fields = ($Property -join ',').ToLower() + $Body.sysparm_fields = $Property -join ',' } if ( $Body ) { From 169d4d5bfe2b247807e7970536134ad44950a13c Mon Sep 17 00:00:00 2001 From: Greg Brownstein Date: Mon, 13 Oct 2025 19:29:38 -0400 Subject: [PATCH 2/3] help update --- ServiceNow/Public/Get-ServiceNowRecord.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ServiceNow/Public/Get-ServiceNowRecord.ps1 b/ServiceNow/Public/Get-ServiceNowRecord.ps1 index 62b7a54..23f88f5 100644 --- a/ServiceNow/Public/Get-ServiceNowRecord.ps1 +++ b/ServiceNow/Public/Get-ServiceNowRecord.ps1 @@ -25,7 +25,8 @@ The comparison performed is a 'like'. .PARAMETER Property - Return one or more specific fields otherwise all fields will be returned + Return one or more specific fields otherwise all fields will be returned. + Field names are case sensitive. .PARAMETER Filter Array or multidimensional array of fields and values to filter on. From c5356c7064a4e60161e74d3f844008f04f79d825 Mon Sep 17 00:00:00 2001 From: Greg Brownstein Date: Mon, 13 Oct 2025 19:33:13 -0400 Subject: [PATCH 3/3] help update --- ServiceNow/Public/Export-ServiceNowRecord.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ServiceNow/Public/Export-ServiceNowRecord.ps1 b/ServiceNow/Public/Export-ServiceNowRecord.ps1 index 514440d..7f40f20 100644 --- a/ServiceNow/Public/Export-ServiceNowRecord.ps1 +++ b/ServiceNow/Public/Export-ServiceNowRecord.ps1 @@ -17,7 +17,8 @@ If providing just an Id, not with Table, the Id prefix will be looked up to find the table name. .PARAMETER Property - Return one or more specific fields otherwise all fields will be returned + Return one or more specific fields otherwise all fields will be returned. + Field names are case sensitive. .PARAMETER Filter Array or multidimensional array of fields and values to filter on.