Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- user_list = [{
- user_id: 12345
- user_email: '[email protected]'
- employee_code: 'xxx',
- employee_image: '',
- full_name: ''
- position: ''
- department: ''
- }]
- course_list: [{
- title: 'toeic_master'// 'toeic',
- slug: 'toeic_master',
- course_id_list: [1,2,3,4] // [11]
- user_list: [{
- user_id: 12345,
- total_progress: 30, //for course bundle, use avg progress of child courses
- },
- {
- user_id: 56789,
- total_progress: 30,
- }]
- }]
- API
- apiAttendance:
- params: {
- company: company_slug,
- course_id_list: [1,2,3],
- first_date: start_date,
- last_date: end_date,
- }
- apiProgress:
- params: {
- company: company_slug,
- course_id_list: [1,2,3],
- first_date: start_date,
- last_date: end_date,
- }
- apiStudentOnline
- params: {
- company: 'opendurian',
- course_id_list: [1,2,3,4],
- user_id_list: ['12345','56789']
- }
- apiStudentDetail
- url: '/api/analytics/student/' + user_id + '/'
- params: {
- company: 'opendurian',
- course_id_list: [1,2,3,4]
- }
Advertisement
Add Comment
Please, Sign In to add comment