Essbaseについて
get
/essbase/rest/v1/about
Essbaseの説明、ビルドおよびバージョンを戻します。
要求
この操作に対するリクエスト・パラメータはありません。
先頭に戻るレスポンス
サポートされるメディア・タイプ
- application/json
- application/xml
200 レスポンス
OK
操作に成功しました。
例
次の例では、cURLを使用してWindowsシェル・スクリプトからREST APIにアクセスし、Essbaseに関するバージョン情報を取得する方法を示します。
呼出し元のユーザーIDとパスワード、およびEssbaseサーバーURLは、properties.bat
で値が設定される変数です。
cURLコマンドを含むスクリプト
call properties.bat
echo About
curl -X GET
-H "Accept: application/json" "%Server%/essbase/rest/v1/about"
-u %User%:%Password%
-o output_about.json
レスポンス本体の例
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": "19.3.1.0.0",
"build": "191"
}