Healthier Business Group
Home
HB PortalRequest API access
Home
HB PortalRequest API access
X
Instagram
LinkedIn
  1. Training Requests
  • Walk through Healthier Business Group 🔵
  • Heathier Business Portal APIs V2
    • Authentication
      • Get access token
      • Refresh access token
      • Get token info
      • Revoke current token
    • Reference Requests
      • References
        • Get reference detail
        • Download reference PDF
      • List reference requests
      • Create reference request
      • Get reference request
      • Cancel reference request
      • Add referee to request
      • Send reminders
    • Candidate Requests
    • Training Requests
    • OH Requests
    • Practical Training Requests
    • BLS Requests
    • Appraisal Requests
    • Certificate Requests
    • Training Verification Requests
    • Webhooks
      • List webhook endpoints
      • Create webhook endpoint
      • Update webhook endpoint
      • Delete webhook endpoint
      • View webhook call logs
      • Send test webhook
    • Templates
      • List form templates
  • Heathier Business Portal APIs V1 - Deprecated
    • Candidate Requests
      • Get All Candidates
      • Get Candidate Data
      • Create New Candidate
      • Update Candidate Details
    • Training Requests
      • Get Available Trainings
        GET
      • Get Candidate Course Result
        GET
      • Get Candidate Training Report
        GET
      • Get Candidate Training Report - Unassigned
        GET
    • OH Requests
      • Get Available Forms
      • Get Form Fields
      • Creating a new submission
      • Modifying the details of an existing submission (Upload Documents)
      • Make final form submission (after uploading documents)
      • Get submission list
      • Retrieve submission result details
      • Retrieve the submission result documents for the employer
    • Certificates Requests
      • Get Training Certificate
      • Get Training Certificate - including expired
      • Get Training Certificate - including non-assigned courses, but excluding expired
      • Get Training Certificate - All available courses
      • Get Training Certificate - Specific Course
    • Webhooks
      • Training Completion
      • Course Completion
  • HB Services
    • List Interview Bookings
      GET
  • The Direct Training Academy
    • Bookings
      • Get Past Bookings
      • Get Upcoming Bookings
      • Search Bookings by Date
    • Booking Links
      • Search Booking Links
  • Schemas
    • Booking
    • TokenResponse
    • InterviewBooking
    • Pagination
    • BookingInvite
    • ReferenceRequest
    • BookingsResponse
    • Reference
    • BookingLinksResponse
    • ReferenceDetail
    • CreateReferenceRequest
    • RefereeInput
    • Template
    • WebhookEndpoint
    • CreateWebhookEndpoint
    • UpdateWebhookEndpoint
    • WebhookCall
    • WebhookPayload
    • PaginationMeta
    • PaginationLinks
    • Error
    • RateLimitError
    • ValidationError
  1. Training Requests

Get Candidate Course Result

GET
/training-results/{{candidate_ref}}/course/{{course_id}}
Maintainer:Not configured
The endpoint provides a method to retrieve the status of an individual course whether currently assigned or not. The requests are HTTP GET (RFC2616) and uses candidate_ref as a resource identifier identifying the candidate uniquely at HB and the course_id to identify the course for which the status is requested.
If the candidate_ref is unknown the response should be HTTP 404 Not Found.
If there’s no historical data from a previous assignment, the API should send an HTTP 204 No Content response.
NOTE: API will return all dates in GMT (UTC+0) timezone only.

Request

Authorization
Add parameter in header
API-Key
Example:
API-Key: ********************

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '/training-results/{{candidate_ref}}/course/{{course_id}}' \
--header 'API-Key: <api-key>'

Responses

🟢200Get Candidate Course Result
application/json
Body

Example
[
    {
        "course": {
            "course_id": "75",
            "course_name": "Basic Numeracy",
            "date_assigned": "2022-10-18 13:22:59",
            "date_completed": "2022-12-06 13:17:18",
            "renewal_date": "2023-12-06 13:17:18",
            "grade": "0.9000",
            "course_status": "complete"
        }
    }
]
Modified at 2024-08-09 12:13:38
Previous
Get Available Trainings
Next
Get Candidate Training Report
Built with