> For the complete documentation index, see [llms.txt](https://openapi-docs.exosp.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://openapi-docs.exosp.com/guide/organization/get-member.md).

# 사용자 조회

<mark style="background-color:green;">GET</mark> `https://openapi.exosp.com/organization/v1/member`

사용자 정보를 조회하는 API 입니다.

### Response Schema

<table><thead><tr><th width="162">항목</th><th width="115">타입</th><th>설명</th></tr></thead><tbody><tr><td>code</td><td>int</td><td><p><strong>응답 처리 결과 코드</strong> </p><p>0 : 성공, 1 : 실패</p></td></tr><tr><td>message</td><td>string</td><td><p><strong>응답 처리 결과 메세지</strong></p><p>success : 성공, 그 외 : 실패</p></td></tr><tr><td>body</td><td>object</td><td><a data-mention href="#body">#body</a></td></tr></tbody></table>

#### **body 상세**

<table><thead><tr><th width="164">항목</th><th width="115">타입</th><th>설명</th></tr></thead><tbody><tr><td>total</td><td>int</td><td><strong>전체 레코드 수</strong></td></tr><tr><td>data</td><td>array</td><td><a data-mention href="#data">#data</a></td></tr></tbody></table>

#### data **상세**

<table><thead><tr><th width="181">항목</th><th width="110">타입</th><th>설명</th></tr></thead><tbody><tr><td>name</td><td>string</td><td><strong>사용자 이름</strong></td></tr><tr><td>email</td><td>string</td><td><strong>사용자 메일</strong></td></tr><tr><td>isNotEmailTypeVaild</td><td>string</td><td><p><strong>아이디에 대한 이메일 형태 체크여부</strong></p><p>(Y: 유효성 체크함, N: 체크 안함)</p></td></tr><tr><td>departmentName</td><td>string</td><td><strong>그룹 이름</strong></td></tr><tr><td>departmentFull</td><td>string</td><td><strong>그룹 전체 경로</strong></td></tr></tbody></table>

### Example

{% tabs %}
{% tab title="200 Success" %}

```javascript
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"
            }
        ]
    }
}
```

{% endtab %}
{% endtabs %}
