사용자 별 애플리케이션 현황

하드웨어 현황 조회

GET https://openapi.exosp.com/status/v1/application-installations/user

하드웨어 현황을 조회하는 API 입니다.

Query Parameters

항목
타입
설명

offset*

int

((현재 페이지 번호 -1)*tableSize) 현재 페이지의 첫 번째 데이터가 위치한 인덱스를 나타냅니다.

tableSize*

int

페이지 사이즈

timezone

string

응답 데이터 타임존https://en.wikipedia.org/wiki/List_of_tz_database_time_zones 에서 TZ identifier 참고

기본값 : UTC

search

string

검색어

검색 대상 : 사용자 이름, 그룹 이름, 컴퓨터 이름

기본값 : 빈값

Response Schema

항목
타입
설명

code

int

응답 처리 결과 코드

0 : 성공, 1 : 실패

message

string

응답 처리 결과 메세지

success : 성공, 그 외 : 실패

body

object

body 상세

항목
타입
설명

total

int

전체 레코드 수

data

array

data 상세

항목
타입
설명

name

string

사용자 이름

departmentName

string

그룹 이름

departmentFull

string

그룹 전체 경로

osType

string

os 유형 windows : 윈도우 , macos : 맥

osUserName

string

os 계정

computerName

string

컴퓨터 이름

softwareName

string

제품 이름

companyName

string

공급자

size

string

크기

version

string

버전 정보

installLocation

string

설치 위치

installDate

string

설치 날짜

Example

curl -X 'GET' \
  'https://openapi.exosp.com/status/v1/application-installations/user?offset=0&tableSize=1&timezone=Asia%2FSeoul' \
  -H 'accept: application/json' \
  -H 'x-exosp-access: YOUR_ACCESS_KEY' \
  -H 'x-exosp-secret: YOUR_ACCESS_SECRET' 

{
  "code": 0,
  "message": "success",
  "body": {
    "total": 24,
    "data": [
        {
                "name": "이나영",
                "departmentName": "마케팅",
                "departmentFull": "마케팅",
                "osType": "windows",
                "osUserName": "이나영",
                "computerName": "이나영",
                "softwareName": "Microsoft Edge",
                "companyName": "Microsoft Corporation",
                "size": "0KB",
                "version": "131.0.2903.99",
                "installLocation": "C:\\Program Files (x86)\\Microsoft\\Edge\\Application",
                "installDate": "2024-12-16"
        },
    ]
  }
}

Last updated