Skip to main content
Participant
September 12, 2022
Question

Need API Help

  • September 12, 2022
  • 1 reply
  • 118 views

We are looking for help from Adobe to build calls that will allow us to use API calls from Captivate to communicate and get information from Conerstone (our LMS) that we could use in the courses such as the learner start date.  We understand that this capability is currently not available in Captivate.  We are looking to build an add on.  Can someone contact me regarding if this is possible and we can find out the pricing estimate?

Thanks!

    This topic has been closed for replies.

    1 reply

    TLCMediaDesign
    Inspiring
    September 12, 2022

    You can make SCORM calls from CP with JavaScript. There really isn't anything in the SCORM data model that would give you a start date. You would be able to tell if the user has accessed the lesson before though. You could execute this Javascript;

     

    var userEntry = SCORM_CallLMSGetValue("cmi.core.entry")

    if ( userEntry == "ab-initio")

    {

    //show pretest

    }

    else

    {

    //user has been here before

    }