アカウント一覧
- 印刷する
アカウント一覧
- 印刷する
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
指定したターゲットのアカウント情報の一覧を取得する。
PATH PARAMETERS
targetId required | string <uuid> ターゲットID |
QUERY PARAMETERS
start | number Default: 0 取得開始位置 (先頭は0) |
length | number Default: 100 取得件数 |
sort | string Default: "name" ソートキー (返却するアカウント情報のキー名のいずれか) |
order | string Default: "asc" Enum: "asc" "desc" ソート順 |
columns | string 取得する項目 (複数指定する場合は","区切り) |
has_password_only | integer Default: 0 パスワードが設定されているアカウントのみを対象とするかどうか |
HEADER PARAMETERS
Authorization required | string 認証情報 (付録参照) |
Accept required | string Value: "application/json" レスポンスの形式 |
X-iDoperation-User-Key | string Default: login_id Enum: "id" "login_id" ユーザ識別キー |
X-iDoperation-User-Value | string ユーザ識別情報 |
Responses
RESPONSE SCHEMA: application/json
total required | integer アカウント件数 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
start required | integer 取得開始位置 (先頭は0) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
length required | integer 取得件数 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sort required | string ソートキー | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
order required | string Enum: "asc" "desc" ソート順 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
required | Array of objects (Account) アカウント情報 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
|
Response samples
- 200
Content type
application/json
{- "total": 2,
- "start": 0,
- "length": 2,
- "sort": "name",
- "order": "asc",
- "accounts": [
- {
- "id": "f48ce057-63d0-4057-8c6c-cccde09b2fc4",
- "name": "idopuser",
- "password_changed_at": null,
- "key_changed_at": "2023-05-16T00:57:08.000Z",
- "target": {
- "id": "7bcfdfb9-9ab4-4f00-b948-055fd55b4950",
- "name": "My Linux"
}, - "is_protect": 0,
- "memo": null,
- "type": null,
- "use_workflow": 1,
- "use_multi_workflow": 1,
- "is_audit": 1,
- "is_password_change": 0,
- "use_temporary_password": 1,
- "use_raw_password": 0,
- "object_id": null,
- "object_path": null,
- "attribute01": null,
- "attribute02": null,
- "attribute03": null,
- "attribute04": null,
- "attribute05": null,
- "is_onetime": 0,
- "onetime_status": null
}, - {
- "id": "d0901ce1-fe43-42be-9d40-fb715303b923",
- "name": "root",
- "password_changed_at": "2023-05-16T00:56:05.000Z",
- "key_changed_at": null,
- "target": {
- "id": "7bcfdfb9-9ab4-4f00-b948-055fd55b4950",
- "name": "My Linux"
}, - "is_protect": 0,
- "memo": null,
- "type": null,
- "use_workflow": 1,
- "use_multi_workflow": 1,
- "is_audit": 1,
- "is_password_change": 1,
- "use_temporary_password": 1,
- "use_raw_password": 1,
- "object_id": null,
- "object_path": null,
- "attribute01": null,
- "attribute02": null,
- "attribute03": null,
- "attribute04": null,
- "attribute05": null,
- "is_onetime": 0,
- "onetime_status": null
}
]
}