Description: This API is used for the retrieve certificate URL for the completed courses.
API Endpoint: https://apps.quickerlearning.com/api/user/certificate
AUTHORIZATION:
Type: Basic Auth
UserName: tenant_id,
Password:secret_key
HEADERS:
Accept: application/json
Note: We can pass a single or multiple company IDs because sometimes a user may have courses in multiple companies.
– Request Body For the multiple companyIDs:
{
“user_id”:702,
“course_id”:31,
“company_id”:[26,59]
}
– Response Body:
{
“message”: “Certificate URL(s) retrieved successfully”,
“status”: 200,
“data”: {
“certificates”: [
{
“company_id”: 26,
“company_name”: “Företag exempel 01”,
“certificate_url”: “https://apps.quickerlearning.com/public/XXXX/certificate/XXX/elearning/2153.pdf”
},
{
“company_id”: 59,
“company_name”: “DevQL”,
“certificate_url”: “https://apps.quickerlearning.com/public/XXXX/certificate/XXX/elearning/2135.pdf”
}
],
“Not completed course”: []
}
}
– Request Body For the single companyID:
{
“user_id”:702,
“course_id”:31,
“company_id”: 26
}
Response for the single companyID:
{
“message”: “Certificate URL(s) retrieved successfully”,
“status”: 200,
“data”: {
“certificates”: [
{
“company_id”: 26,
“company_name”: “Företag exempel 01”,
“certificate_url”: “https://apps.quickerlearning.com/public/XXXX/certificate/XXX/elearning/2135.pdf”
}
],
“not_completed”: []
}
}
