에이전트 미설치 사용자 현황
Last updated
Last updated
curl -X 'GET' \
'https://openapi.exosp.com/status/v1/agent/distribute?currentPage=0&tableSize=1000' \
-H 'accept: application/json' \
-H 'x-exosp-access: YOUR_ACCESS_KEY' \
-H 'x-exosp-secret: YOUR_ACCESS_SECRET'
{
"code": 0,
"message": "success",
"body": {
"data": [
{
"name": "test",
"email": "[email protected]",
"departmentFullName": "test",
"state": "N",
"stateMobile": "N"
},
{
"name": "test1",
"email": "[email protected]",
"departmentFullName": "test > test1",
"state": "N",
"stateMobile": "N"
}
],
"total": 2,
"currentPage": 0,
"tableSize": 1000
}
}