uPrism.io
HomePlan 안내Blog
1.0.0-Ko
1.0.0-Ko
  • uPrism API 개발자 가이드 문서
  • 사용 플로우
  • 인증
    • Access Token
    • Authentication
  • Sample
    • 채팅 프로그램
  • REST API
    • Conference
      • Get Conference List
      • Join Conference
      • Create Conference
      • Update Conference
      • Delete Conference
    • Sub User
      • Get Sub User List
      • Create Sub User
      • Update Sub User
      • Delete Sub User
    • Address
      • Get Address List
      • Create Address
      • Update Address
      • Delete Address
      • Get Address Group List
      • Create Address Group
      • Update Address Group
      • Delete Address Group
    • Invite
      • Send Invite Mail
    • Logs
      • Get Conference Logs
    • Statistics
      • Get Conference Statistics
      • Get User Conference Statistics
    • Recording
      • Get Recording List(All)
      • Get Recording List
      • Download Recording File (FileName)
      • Download Recording File (SeqNo)
      • Delete Recording File
    • Organization
      • Post Organization
  • SDK
Powered by GitBook
On this page

Was this helpful?

  1. REST API
  2. Statistics

Get Conference Statistics

회의 사용 통계 API

Get Conference Statistics

GET https://uprism.io:30443/v1/conference/statistics

회의 사용 통계를 가져오는 API

Query Parameters

Name
Type
Description

from

string

검색 시작 날짜 "yyyyMMddhhmmss" 형식 날짜

to

string

검색 끝 날 "yyyyMMddhhmmss" 형식 날짜

Headers

Name
Type
Description

Authorization

string

"Bearer " + {AccessToken}

{
    "code": 200,
    "message": "success",
    "response": {
        "total_create_conf": 2,
        "total_prog_time": 60,
        "total_access_user_session": 3,
        "total_access_device_session": 0
    }
}
PreviousStatisticsNextGet User Conference Statistics

Last updated 5 years ago

Was this helpful?