애플리케이션 별 설치현황
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
항목
타입
설명
body 상세
항목
타입
설명
total
int
전체 레코드 수
data 상세
항목
타입
설명
사용자 정보 상세
항목
타입
설명
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