GithubHelp home page GithubHelp logo

Comments (3)

Rick-2CA avatar Rick-2CA commented on July 24, 2024

The REST API returns a property name called 'state', however the field is called 'case_status' when performing a query.

from servicenow-powershell.

pckeith avatar pckeith commented on July 24, 2024

Referring to case_status doesn't break the call, however also doesn't filter the data. I got around the issue for now, by doing the following:

SNIncidents = Get-ServiceNowIncident -MatchContains @{assignment_group='My Group';opened_at='2018'}
$SNIncidents = $SNIncidents | where-Object {$.state -ne 'Resolved'}
$SNIncidents = $SNIncidents | where-Object {$
.state -ne 'Closed'}

Now that I've gotten though this one, I need to pull information from Change Tasks, and I'm not seeing a function for that. I guess I'll file another question for that...

from servicenow-powershell.

Rick-2CA avatar Rick-2CA commented on July 24, 2024

Seems I remembered incorrectly in my first reply. You do want to use 'state' in your query, but you have to use the state codes. For example 'Closed' is '7':

Get-ServiceNowIncident -MatchExact @{state=7} -Limit 1

That should get you a closed incident. Your state list can be customized and apparently be different depending on the SNow version you started with so you'll want to see what's available on your end for other options.

The property is case sensitive.

Regarding Change Tasks - you can look at how Get-ServiceNowChangeRequest works if you dig into the function and use it as a template for a custom ChangeTask function. Submit it as a PR and we'll get it integrated. Otherwise it's on the "to do" list for whenever free time happens to appear out of nowhere. :)

from servicenow-powershell.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.