プロファイルリストの照会
- 印刷する
- PDF
プロファイルリストの照会
- 印刷する
- PDF
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
プロファイルリストを照会します。
API
- GET /profiles
リクエスト
Parameters
パラメータ | 必須の有無 | タイプ | 制限事項 | 説明 |
---|---|---|---|---|
searchColumn | N | String | name、profileNrn | 検索カラム(name, profileNrn) |
searchWord | N | String | 検索キーワード | |
page | N | int | デフォルト: 0 | ページ番号 |
size | N | int | デフォルト: 20 | 結果リストのサイズ |
レスポンス
Body
{
"pageNo": integer,
"totalElements": integer,
"pageSize": integer,
"content": [
{
"profileId": "string",
"profileNrn": "string",
"name": "string",
"description": "string",
"enabled": boolean,
"durationSeconds": integer,
"roleNrnList": [
"string"
],
"createTime": "string",
"updateTime": "string"
}
]
}
レスポンスフィールド
項目 | タイプ | 説明 |
---|---|---|
pageNo | integer | ページ番号 |
totalElements | integer | 総 item件数 |
pageSize | integer | ページサイズ |
content.profileId | string | プロファイルの ID |
content.profileNrn | string | プロファイルの NRN |
content.name | string | プロファイル名 |
content.description | string | プロファイルの説明 |
content.enabled | boolean | プロファイルは有効化されているか |
content.durationSeconds | integer | 仮認証情報の持続時間(秒) |
content.roleNrnList | list | このプロファイルが仮認証情報に使用できるロールの roleNrnリスト |
content.createTime | string | 作成時刻 |
content.updateTime | string | 更新時刻 |
この記事は役に立ちましたか?