Classic/VPC 환경에서 이용 가능합니다.
Application 목록을 조회합니다.
요청
요청 형식을 설명합니다. 요청 형식은 다음과 같습니다.
| 메서드 | URI | 
|---|---|
| GET | /api/v1/applications | 
요청 헤더
Ncloud Single Sign-On API에서 공통으로 사용하는 헤더에 대한 정보는 Ncloud Single Sign-On 요청 헤더를 참조해 주십시오.
요청 쿼리 파라미터
요청 쿼리 파라미터에 대한 설명은 다음과 같습니다.
| 필드 | 타입 | 필수 여부 | 설명 | 
|---|---|---|---|
searchColumn | 
String | Conditional | 검색 컬럼
  | 
searchWord | 
String | Optional | 검색 키워드
  | 
page | 
Integer | Optional | 페이지 번호
  | 
size | 
Integer | Optional | 페이지 출력 수
  | 
요청 예시
요청 예시는 다음과 같습니다.
curl --location --request GET 'https://sso.apigw.gov-ntruss.com/api/v1/applications?searchColumn=applicationName&searchWord=application&page=0&size=20' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}'
응답
응답 형식을 설명합니다.
응답 바디
응답 바디에 대한 설명은 다음과 같습니다.
| 필드 | 타입 | 필수 여부 | 설명 | 
|---|---|---|---|
page | 
Number | - | 페이지 번호 | 
totalPages | 
Number | - | 전체 페이지 수 | 
totalItems | 
Number | - | 응답 결과 수 | 
isFirst | 
Boolean | - | 첫 페이지 여부
  | 
isLast | 
Boolean | - | 마지막 페이지 여부
  | 
hasPrevious | 
Boolean | - | 이전 페이지 존재 여부
  | 
hasNext | 
Boolean | - | 다음 페이지 존재 여부
  | 
items | 
Array | - | Application 목록 | 
items
items에 대한 설명은 다음과 같습니다.
| 필드 | 타입 | 필수 여부 | 설명 | 
|---|---|---|---|
applicationId | 
String | - | Application 아이디 | 
name | 
String | - | Application 이름 | 
description | 
String | - | Application 설명 | 
applicationUrl | 
String | - | Application URL | 
applicationType | 
String | - | Application 유형
  | 
mbrLoginAllow | 
String | - | 메인 계정 로그인 허용 여부
  | 
createdAt | 
String | - | Application 생성 일시
  | 
updatedAt | 
String | - | Application 수정 일시
  | 
clientId | 
String | - | Application Client 아이디
  | 
clientAuthMethod | 
String | - | Application 인증 방식
  | 
redirectUris | 
Array | - | Application 리디렉션 URI 목록
  | 
accessType | 
String | - | Application 접근 방식
  | 
grantTypes | 
Array | - | 권한 부여 방식
  | 
scopes | 
Array | - | Application 접근 가능 정보 범위
  | 
accessTokenValidity | 
Number | - | Access Token 유효 기간(초)
  | 
refreshTokenValidity | 
Number | - | Refresh Token 유효 기간(초)
  | 
protocol | 
String | - | Application 인증 프로토콜
  | 
응답 상태 코드
Ncloud Single Sign-On API에서 공통으로 사용하는 응답 상태 코드에 대한 정보는 Ncloud Single Sign-On 응답 상태 코드를 참조해 주십시오.
응답 예시
응답 예시는 다음과 같습니다.
{
    "page" : 0,
    "totalPages" : 1,
    "totalItems" : 1,
    "isFirst" : true,
    "isLast" : true,
    "hasPrevious" : false,
    "hasNext" : false,
    "items" : [
        {
            "applicationId" : "88d2009c-****-****-****-59bf9afd5695",
            "name" : "application000",
            "description" : "aplication000 description",
            "applicationUrl" : "http://****.com",
            "applicationType" : "web",
            "mbrLoginAllow" : "ALLOW",
            "createdAt" : "2025-01-17T05:09:54Z",
            "updatedAt" : "2025-01-17T05:09:54Z",
            "clientId" : "88d2009c-****-****-****-59bf9afd5695",
            "clientAuthMethod" : "client_secret_basic",
            "redirectUris" : [
                "http://****.com"
            ],
            "accessType" : "confidential",
            "grantTypes" : [
                "authorization_code",
                "refresh_token"
            ],
            "scopes" : [
                "profile"
            ],
            "accessTokenValidity" : 43200,
            "refreshTokenValidity" : 2592000,
            "protocol" : "OAUTH2"
        }
    ]
}