출력물 제어 내역
GET https://openapi.exosp.com/logs/v1/print-control
출력물 제어 내역을 조회하는 API 입니다.
Query Parameters
offset*
int
((현재 페이지 번호 -1)*tableSize) 현재 페이지의 첫 번째 데이터가 위치한 인덱스를 나타냅니다.
tableSize*
int
페이지 사이즈
startTimeUTC*
string
응답 데이터 시작 시각
UTC 기준, ISO 8601포맷 ✅ 최신 3개월 이내의 시각만 입력해주세요.
endTimeUTC*
string
응답 데이터 종료 시각 UTC 기준, ISO 8601포맷
sortType*
string
응답 데이터 정렬 유형 (제어 시각 기준) ASC : 오름차순, DESC : 내림차순
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
사용자 이름
departmentName
string
그룹 이름
departmentFull
string
그룹 전체 경로
osType
string
os 유형 windows : 윈도우 , macos : 맥
osUserName
string
os 계정
computerName
string
컴퓨터 이름
fileName
string
파일 이름
processPath
string
프로그램 경로
controlType
string
제어 유형 Allow : 허용, Block : 출력 차단, Watermark : 워터마크 출력
dateOfEntryUTC
string
제어 시각
UTC 기준, ISO 8601포맷
dateOfEntry
string
제어 시각
요청 타임존 기준, ISO 8601포맷
Example
curl -X 'GET' \
'https://openapi.exosp.com/logs/v1/print-control?offset=0&tableSize=1&startTimeUTC=2024-05-01T15%3A00%3A00%2B00%3A00&endTimeUTC=2024-08-01T15%3A00%3A00%2B00%3A00&timezone=Asia%2FSeoul&sortType=DESC' \
-H 'accept: application/json' \
-H 'x-exosp-access: YOUR_ACCESS_KEY' \
-H 'x-exosp-secret: YOUR_ACCESS_SECRET'
{
"code": 0,
"message": "success",
"body": {
"total": 18,
"data": [
{
"name": "이은지",
"departmentName": "cx 테스트2",
"departmentFull": "어벤져스 > cx 테스트",
"osType": "windows",
"osUserName": "[email protected]",
"computerName": "eunji",
"fileName": "ACFrOgC5dMB8okuYn3gplzh39MExKdb7g38X7lF...ee5gPw6L3a3M34s8tOjS506w89uo56Pq504BAU",
"processPath": "C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe",
"controlType": "Allow",
"dateOfEntryUTC": "2024-11-15T03:21:04+00:00",
"dateOfEntry": "2024-11-15T12:21:04+09:00"
}
]
}
}
Last updated