Viewing application list
- Print
- PDF
Viewing application list
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
View the application list.
Requests
- GET /applications
Request parameters
Parameters | Type | Required | Description | Service limits |
---|---|---|---|---|
searchColumn | String | N | Search column | applicationId, applicationName |
searchWord | String | N | Search keywords | |
page | int | N | Page number | Default value: 0 |
size | int | N | Size of result list | Default value: 20 |
Responses
Response bodies
{
"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"
}
Parameters | Type | Description | Service limits |
---|---|---|---|
page | Number | Returned result page | |
totalPages | Number | Returned result totalPage | |
totalItems | Number | Returned result totalItems | |
hasPrevious | Boolean | Checks whether the previous page exists based on the current page | |
hasNext | Boolean | Checks whether the next page exists based on the current page | |
isFirst | Boolean | Checks whether the current page is the first page based on all pages | |
isLast | Boolean | Checks whether the current page is the last page based on all pages | |
items.[].applicationId | String | application id | |
items.[].applicationUrl | String | Go to 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 expiration time | |
items.[].refreshTokenValidity | Number | [Oauth2] refresh token expiration time | |
items.[].createdAt | String | [Oauth2] application creation time (UTC, e.g., 2023-04-25T13:11:50Z) | |
items.[].updatedAt | String | [Oauth2] application edit date and time (UTC, example: 2023-04-25T13:11:50Z) |
Was this article helpful?