Get User Information#

指定したテナントの指定ユーザー情報を取得します。

APIエンドポイント#

リージョン APIエンドポイント
西日本リージョン3の場合 https://objectstorage-s.jp-west-3.cloud.global.fujitsu.com
東日本リージョン3の場合 https://objectstorage-s.jp-east-3.cloud.global.fujitsu.com

HTTPメソッドとURI#

GET

/v2/admin/{tenantID}/users/{userID}

HTTPステータスコード#

正常時:200

エラー時:400, 403, 404, 405, 409, 411, 412, 416, 422, 500, 501, 503

リクエストパラメータの説明#

名前 In Type デフォルト値
/必須指定
Description
tenantID path string 必須 テナント識別子
userID path string 必須 ユーザー識別子
X-Auth-Token header string 必須 認証のトークン

レスポンスヘッダーの説明#

名前 Type Description
Date string トランザクションが実行された日時
Content-Type string MIME仕様で定義されているコンテントの形式
Content-Length string レスポンスボディのバイト数
X-Fcx-Endpoint-Request string このリクエストに付与されるID
トラブルについて問い合わせる際に利用されます。

レスポンスボディ(正常系)の説明#

名前 Type Description
apiVersion string APIの内部のバージョン番号
data object accountIdからuserURNまでを含むユーザーデータの情報
accountId string テナント識別子
fullName string ユーザー名(表示用)
id string ユーザー識別子
オブジェクトストレージ内で一意の識別子です。この識別子を利用してユーザーの操作を実施します。
memberOf array ユーザを所属させるグループID(複数指定可)
uniqueName string ユーザー名
userURN string テナント識別子+ユーザー名
例:urn:sgws:identity::accountId:user/ユーザ名
responseTime string 応答が生成された日時
status object 要求の結果
「success」または「error」が表示されます。

リクエスト例#

リクエストヘッダー

GET /v2/admin/46799197538990820493/users/1f3a2a93-883a-4205-812c-58c62de0e9c2 HTTP/1.1
User-Agent: curl/7.29.0
Host: objectstorage-s.jp-east-3.cloud.global.fujitsu.com
Accept: */*
X-Auth-Token:gAAAAABc72zCErqOoNL7dg--4gYz0G0_9nq_yvk5nFsVbLkHeiwhc_6JEpLV4qo7rpGxhbScFFhyXNQtzI8K32KYwPxP7A1-y9hcYrqhyuz_z7Obb4ycV3wd_-H_5ArzP0WIZQHUWgk7hMEchX7Lzpf151hD9xQ9Dpyb4WiUMOcsZRDk2-y3tU0

レスポンス例#

レスポンスヘッダー

HTTP/1.1 200 OK
Date: Thu, 30 May 2019 05:40:18 GMT
Content-Type: application/json
Content-Length: 344
Connection: keep-alive
Api-Version: 2
Cache-Control: no-cache
Content-Security-Policy: frame-ancestors 'self'; block-all-mixed-content
Expires: Thu, 30 May 2019 05:40:18 GMT
Strict-Transport-Security: max-age=31536000; includeSubDomains
Vary: Api-Version
X-Content-Security-Policy: frame-ancestors: 'self'; block-all-mixed-content
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Fcx-Endpoint-Request: EXECUTED_api2-rmp1.management.jp-east-3.local-28162-120474-1_200

レスポンスボディ

{
    "apiVersion": "2.2",
    "data": {
        "accountId": "46799197538990820493",
        "fullName": "testuser01",
        "id": "1f3a2a93-883a-4205-812c-58c62de0e9c2",
        "memberOf": [
            "25aefd91-1d71-4e34-a3f8-55b54639cc2f"
        ],
        "uniqueName": "user/testuser01",
        "userURN": "urn:sgws:identity::46799197538990820493:user/testuser01"
    },
    "responseTime": "2019-05-30T05:40:18.806Z",
    "status": "success"
}