User Webinar Course Activity

This end point is use for get list of course activity by employee ID

[GET] /ruangkerja/dashboard/users/:employeeID/courses/webinar

Information

This API contains information all assignment Webinar Course by User in Ruangkerja.

See also API: Course.

Headers

NameTypeExampleRequiredDescription
Authorizationstringaccess_tokenYESToken of authentication. Get from Authentication API
Acceptstringapplication/jsonYESDefines the message format that is expected by the client
Content-Typestringapplication/jsonYESDefines the message format of the request body that is sent by the client

Parameter

NameTypeRequiredLocationDescription
pageintYESqueryQuery for skip page of collection
pageSizeintYESqueryQuery for limit result data from server. Maximum value 100
employeeIDstringYESpathEmployee ID of User

Example cURL Request

curl --location --request GET 'https://api.ruangkerja.id/ruangkerja/dashboard/users/JOHNILXV3QAJJEL3/courses/webinar?page=1&pageSize=10' \
--header 'Authorization: access_token'

Example Success Response

{
    "status": "success",
    "message": "Success",
    "data": [
        ...,
        {
            "course": {
                "serial": "COURSE-EXAMPLE1",
                "name": "[OFFLINE] Effisien Menggunakan Spreadsheet untuk Report"
            },
            "batch": {
                "serial": "BATCH-EXP-02",
                "name": "Webinar Training Batch 1",
            },
            "absentReason": "",
            "assignedCourseSerial": "ASGC-T0MHUDPV",
            "feedback": "",
            "isAttend": true,
            "userAssignedStatus": "Ongoing"
            "postActivityStatus": "",
            "postTestAttempt": 0,
            "postTestScore": 0,
            "postTestPassingScore": null
        }
    ]
}

Response Body Terminology

LocationTypeDescription
data.items.*.postTestPassingScoreint (nullable)The rules passing score
data.items.*.postActivityStatusenum(NOT STARTED, IN PROGRESS, COMPLETED, EXPIRED)The status of user post activity, Possible empty string if course doesn’t have post activity
data.items.*.userAssignedStatusenum(Ongoing, Cleared, Failed)The status of user task

Example Failed Response

{
    "errorCode": 123,
    "message": "rpc error: code = PermissionDenied desc = Token is not valid",
    "detail": "rpc error: code = PermissionDenied desc = Token is not valid"
}

See also: Error Dictionary.