Application リストの照会
- 印刷する
- PDF
Application リストの照会
- 印刷する
- PDF
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
Applicationリストを照会します。
リクエスト
- GET /applications
リクエストパラメータ
パラメータ | タイプ | 必須有無 | 説明 | 制限事項 |
---|---|---|---|---|
searchColumn | String | N | 検索カラム | applicationId, applicationName |
searchWord | String | N | 検索キーワード | |
page | int | N | ページ番号 | デフォルト値: 0 |
size | int | N | 結果リストのサイズ | デフォルト値: 20 |
レスポンス
レスポンスボディ
{
"page" : "integer",
"totalPages" : "integer",
"totalItems" : "integer",
"hasPrevious" : "boolean",
"hasNext" : "boolean",
"items" : [ {
"applicationId" : "string",
"applicationUrl" : "string",
"name" : "string",
"description" : "string",
"applicationType" : "string",
"mbrLoginAllow" : "string",
"protocol" : "string",
"clientId" : "string",
"clientAuthMethod" : "string",
"accessType" : "string",
"redirectUris" : "string",
"grantTypes" : "string",
"scopes" : "string",
"accessTokenValidity" : "string",
"refreshTokenValidity" : "string",
"createdAt" : "string"
"updatedAt" : "string"
} ],
"isFirst" : "boolean",
"isLast" : "boolean"
}
パラメータ | タイプ | 説明 | 制限事項 |
---|---|---|---|
page | Number | リターンした結果 page | |
totalPages | Number | リターンした結果 totalPage | |
totalItems | Number | リターンした結果 totalItems | |
hasPrevious | Boolean | 現在のページを基準に、以前のページの存在有無を確認 | |
hasNext | Boolean | 現在のページを基準に、次のページの存在有無を確認 | |
isFirst | Boolean | 全ページを基準に、現在のページがトップページかを確認 | |
isLast | Boolean | 全ページを基準に、現在のページが最終ページかを確認 | |
items.[].applicationId | String | application id | |
items.[].applicationUrl | String | applicationショートカット Url | |
items.[].name | String | application name | |
items.[].description | String | application description | |
items.[].applicationType | String | application type | app, web |
items.[].mbrLoginAllow | String | application mbrLoginAllow | ALLOW, DENY |
items.[].protocol | String | application protocol | OAUTH2 |
items.[].clientId | String | [Oauth2] application clientId | |
items.[].clientAuthMethod | String | [Oauth2] application clientAuthMethod | client_secret_basic, client_secret_post, none |
items.[].accessType | String | [Oauth2] application accessType | confidential, public |
items.[].redirectUris | Array | [Oauth2] application redirectUris | |
items.[].grantTypes | Array | [Oauth2] application grantTypes | authorization_code, refresh_token, implicit |
items.[].scopes | Array | [Oauth2] application scopes | profile, openid, groups |
items.[].accessTokenValidity | Number | [Oauth2] access token有効期限 | |
items.[].refreshTokenValidity | Number | [Oauth2] refresh token有効期限 | |
items.[].createdAt | String | [Oauth2] applicationの作成日時(UTC、例: 2023-04-25T13:11:50Z) | |
items.[].updatedAt | String | [Oauth2] applicationの修正日時(UTC、例: 2023-04-25T13:11:50Z) |
この記事は役に立ちましたか?