Essbase情報

get

/essbase/rest/v1/about

Essbaseの説明、ビルドおよびバージョンを返します。

リクエスト

この操作にはリクエスト・パラメータはありません。

先頭に戻る

レスポンス

サポートされているメディア・タイプ

200 レスポンス

OK

成功した操作。

本体()
ルート・スキーマ : about
型: object
ソースの表示
先頭に戻る

次の例では、cURLでWindowsのシェル・スクリプトからREST APIにアクセスしてEssbaseについてバージョン情報を取得する方法を示します。

この例では、cURLを使用して、Windowsシェル・スクリプトからREST APIにアクセスします。呼出し元ユーザーのIDおよびパスワードは変数であり、properties.bat内でその変数値が設定されています。

cURLコマンドを含むスクリプト

call properties.bat
curl -X GET -H "accept:application/json" "https://myserver.example.com:9001/essbase/rest/v1/about" -u %User%:%Password%

レスポンス本体の例

次の例では、レスポンス本体の内容をJSON形式で示します。

{
  "name" : "Essbase",
  "description" : "Essbase is a business analytics solution built using a proven, flexible best-in-class architecture for analysis and reporting. It delivers instant value and greater productivity for business users, analysts, modelers, and decision-makers across all lines of business within an organization. Users interact through a Web 2.0 or Microsoft Office interface to analyze, model, collaborate, and report. The platform, built to scale and perform, uses industry standard Oracle infrastructure.",
  "version" : "21.6.0.0.0",
  "build" : "nnn"
}
先頭に戻る