Application 목록 조회
- 인쇄
- PDF
Application 목록 조회
- 인쇄
- PDF
기사 요약
이 요약이 도움이 되었나요?
의견을 보내 주셔서 감사합니다.
Application 목록을 조회합니다.
요청
- GET /applications
요청 파라미터
파라미터 | 타입 | 필수 여부 | 설명 | 제약 사항 |
---|---|---|---|---|
searchColumn | String | N | 검색 컬럼 | applicationId, applicationName |
searchWord | String | N | 검색어 | |
page | int | N | 페이지 번호 | 기본 값: 0 |
size | int | N | 결과 목록 크기 | 기본 값: 10 |
응답
응답 바디
{
"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,ex.2023-04-25T131150Z) | |
items.[].updatedAt | String | [Oauth2] application 수정 일시 (UTC,ex.2023-04-25T131150Z) |
이 문서가 도움이 되었습니까?