GET/Users/{userId}
구성원 정보를 조회한다.
| Parameter | Type | Description |
|---|---|---|
| userId | integer | 구성원 ID required |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} SCIM 전용 Long-Lived Token 발급 문서를 참고한다. required |
| Property | Type | Description |
|---|---|---|
| schemas | array (string) | 스키마 URL required |
| id | string | 구성원 ID readOnly : true |
| externalId | string | SCIM 클라이언트 측에서 관리하는 ID maxLength : 100 |
| userName | string | 계정. 메일 주소와 동일하다.
required maxLength : 90 |
| name | object (name) | required |
| displayName | string | 표시 이름 readOnly : true |
| nickName | string | 닉네임
maxLength : 100 |
| preferredLanguage | string | 언어 코드 Allowed values : ko-KR, ja-JP, en-US, zh-CN, zh-TW |
| timezone | string | default : 도메인에 설정된 타임존 |
| active | boolean | 활성화 여부
구성원 추가 시 반드시 true로 전달해야 한다. default : true |
| emails | array (ScimUserEmail) | 이메일 정보 |
| phoneNumbers | array (ScimUserPhoneNumber) | 전화번호 정보 |
| ims | array (ScimUserInstantMessage) | 메신저 정보 |
| urn:ietf:params:scim:schemas:extension:works:2.0:User | object (urn:ietf:params:scim:schemas:extension:works:2.0:User) | |
| meta | object (meta) |
| Property | Type | Description |
|---|---|---|
| familyName | stringnull | 성
maxLength : 80 |
| givenName | stringnull | 이름
maxLength : 80 |
| Property | Type | Description |
|---|---|---|
| type | string | 이메일 유형
required Allowed values : alias, other |
| primary | boolean | 대표 여부 default : false |
| value | string | 이메일
required |
| Property | Type | Description |
|---|---|---|
| type | string | 전화번호 유형
required Allowed values : work, mobile |
| primary | boolean | 대표 여부 default : false |
| value | string | 전화번호 required maxLength : 100 pattern : ^(?=.*[0-9])[0-9+\-*#PTpt()\u3000]{0,100} |
| Property | Type | Description |
|---|---|---|
| type | string | 메신저 유형 required Allowed values : work |
| primary | boolean | 대표 여부 default : false |
| value | string | 메신저 ID required minLength : 1 maxLength : 100 |
| Property | Type | Description |
|---|---|---|
| userExternalKey | stringnull | 구성원 외부 키. %, , #, /, ? 포함 불가 maxLength : 100 |
| Property | Type | Description |
|---|---|---|
| resourceType | string | 리소스 유형 Allowed values : USER, GROUP |
| created | string | 생성일 |
| lastModified | string | 최근 수정일 |
| location | string | 리소스 URI |
Not Found