Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ServiceNow/Private/Invoke-ServiceNowRestMethod.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ function Invoke-ServiceNowRestMethod {
}

if ($Property) {
$Body.sysparm_fields = ($Property -join ',').ToLower()
$Body.sysparm_fields = $Property -join ','
}

if ( $Body ) {
Expand Down
3 changes: 2 additions & 1 deletion ServiceNow/Public/Export-ServiceNowRecord.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
3 changes: 2 additions & 1 deletion ServiceNow/Public/Get-ServiceNowRecord.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down