2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Rest API Explorerを用いて、レコードから情報を取得したい場合

Posted at

想定

ServiceNow内部だけで業務が完結せず、外部からcurl/shellなどを叩いて、レコードの状態を確認したい場合を想定して(例えば、ST環境と本番環境の設定差分をチェックしたい場合)、調べたことを書きおく。

ServiceNow内部で完結する場合(基本形)

Rest API Exploer(system web service > rest api explorer)のtable APIを活用する。
Screenshot 2021-08-06 00.39.58.png

table api では細かくノーコードで設定値やクエリを設定できる。
例)incidentテーブルのレコード、field条件(Number/Description/State)を取得するケース
image.png
実行結果は下記
image.png

中段ボタンでスクリプトを自動生成してくれる機能がある。
image.png

[powershellの例]

auto_produce.ps1
# Eg. User name="admin", Password="admin" for this code sample.
$user = "admin"
$pass = "admin"

# Build auth header
$base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(("{0}:{1}" -f $user, $pass)))

# Set proper headers
$headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]"
$headers.Add('Authorization',('Basic {0}' -f $base64AuthInfo))
$headers.Add('Accept','application/json')


# Specify endpoint uri
$uri = "https://devxxxx.service-now.com/api/now/table/incident?sysparm_fields=number%2Cdescription%2Cstate&sysparm_limit=1"

# Specify HTTP method
$method = "get"

# Send HTTP request
$response = Invoke-RestMethod -Headers $headers -Method $method -Uri $uri 

# Print response
$response.RawContent

endpoint urlの構造

"https://devxxxx.service-now.com/api/now/table/incident?sysparm_fields=number%2Cdescription%2Cstate&sysparm_limit=1"
  • base_url...https://devxxxx.service-now.com
  • table_api.../api/now/table
  • table...incident
  • target_field...?sysparm_fields=number%2Cdescription%2Cstate&
  • option...&sysparm_limit=1

の構造になる。上記の組み立てをGUI上で簡単にしてくれることがrest api explorerのメリット。しかしこれは完全ではなく、取得できないテーブル(sys_properties)の存在や、他環境だと書き換えが必要だったりもするので、今回はpowershellで組み立てる。

powershell

get_incident_record.ps1
Param (
    [parameter(mandatory)][string]$mfa
)

$conf_file = "config.json"
$conf = Get-Content $conf_file | ConvertFrom-Json
$user = $conf.userid
$pass = $conf.password + $mfa

$base = $conf.target_url
$restapi = 'api/now/table'
$table = "incident"
$query = "?sysparm_fields=number%2Cdescription%2Cstate&"

$url = $base + $restapi + $table + query
$secpasswd = ConvertTo-SecureString $pass -AsPlainText -Force
$credential = New-Object System.Management.Automation.PSCredential($user, $secpasswd)

Invoke-RestMethod $url -Credential -o datafile.txt

設定ファイルは外部ファイル化して読み込む形にする。

config.json
{
  "target_url" : "http;//(あなたのインスタンス).servicenow.com",
  "userid" : "(あなたのユーザーID)",
  "password" : "(あなたのパスワード)"
}

REST認証におけるMFA対応

REST認証では、パスワードだけを送信するのではなく、パスワード+リアルタイム6桁のコードを送信する必要がある。 例えば アカウントのパスワードが「Pass123」で、現時点での6桁の認証コードが「987654」の場合、パスワードとして「Pass123987654」を送信する。
なので、今回のコードの以下部分はそちらに対応している。

Param (
    [parameter(mandatory)][string]$mfa
)
...
$pass = $conf.password + $mfa
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?