사용자 조회
GET https://openapi.exosp.com/organization/v1/member
사용자 정보를 조회하는 API 입니다.
Response Schema
항목
타입
설명
body 상세
항목
타입
설명
total
int
전체 레코드 수
data 상세
항목
타입
설명
name
string
사용자 이름
string
사용자 메일
isNotEmailTypeVaild
string
아이디에 대한 이메일 형태 체크여부
(Y: 유효성 체크함, N: 체크 안함)
departmentName
string
그룹 이름
departmentFull
string
그룹 전체 경로
Example
curl -X 'GET' \
'https://openapi.exosp.com/organization/v1/member' \
-H 'accept: application/json' \
-H 'x-exosp-access: YOUR_ACCESS_KEY' \
-H 'x-exosp-secret: YOUR_ACCESS_SECRET'
{
"code": 0,
"message": "success",
"body": {
"total": 8,
"data": [
{
"name": "test1",
"email": "test1@exosp.com",
"isNotEmailTypeValid": "N",
"departmentName": "test",
"departmentFullName": "test"
},
{
"name": "test2",
"email": "test2@exosp.com",
"isNotEmailTypeValid": "N",
"departmentName": "test2",
"departmentFullName": "test > test2"
},
{
"name": "test3",
"email": "test3.exosp.com",
"isNotEmailTypeValid": "N",
"departmentName": "test2",
"departmentFullName": "test > test2"
},
{
"name": "test4",
"email": "test4@exosp.com",
"isNotEmailTypeValid": "N",
"departmentName": "test4",
"departmentFullName": "test > test3 > test4"
},
{
"name": "test5",
"email": "test5@exosp.com",
"isNotEmailTypeValid": "N",
"departmentName": "test4",
"departmentFullName": "test > test3 > test4"
},
{
"name": "test6",
"email": "test6@exosp.com",
"isNotEmailTypeValid": "N",
"departmentName": "test4",
"departmentFullName": "test > test3 > test4"
},
{
"name": "test7",
"email": "test7@exosp.com",
"isNotEmailTypeValid": "N",
"departmentName": "test",
"departmentFullName": "test"
},
{
"name": "test7",
"email": "test7@exosp.com",
"isNotEmailTypeValid": "Y",
"departmentName": "test7",
"departmentFullName": "test > test7"
}
]
}
}Last updated