애플리케이션 별 현황

애플리케이션 별 현황 조회

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

애플리케이션 별 현황을 조회하는 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 상세

항목
타입
설명

softwareName

string

제품 이름

companyName

string

공급자

installCount

string

설치 수

사용자 정보 상세

항목
타입
설명

name

string

전체 레코드 수

version

string

버전 정보

installDate

string

설치 시각

Example

curl -X 'GET' \
  'https://openapi.exosp.com/status/v1/application-installations/application?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": [
        {
            "softwareName": "Slack",
            "companyName": "Slack Technologies Inc.",
            "installCount": "12",
            "userList": [
                    {
                        "name": "이수지(이수지)",
                        "version": "4.41.105",
                        "installDate": "2024-12-16 00:00:00"
                    }
            ]
        }
    ]
  }
}

Last updated