Skip to main content

How to send data to the exam

🦉 POST integration ✓ GET integration ✓ How to set it up

You can use our POST and GET integrations.

With little modifications to the URL of your learning content or its embed code, you can capture data from your participants. Learn more.

POST integration

If your system is able to submit data in the URL, this will probably be the quickest way to integrate. Easy LMS can capture the following parameters:

name=
email=
company=
phone=
employeeid=
function=
gender=
birthday=
address=
postalcode=
city=
country=

Notes:

  • We only have one name field, so not a separate name and last name.

  • Country codes are ISO 3166-1 alpha-2.

  • For gender, 1 is male, 2 is female, 3 is other, and 4 is prefer not to say.

  • The format for a birthday is year/month/date, so for example: 1970-06-24.

GET integration

With a slight modification to the embed code, it's possible to implement your own adapter for the parent page. Below is a slightly modified embed code that should show what can be changed to suit your needs:

Or you can use this adapter to add the data directly to your embed code instead of passing it on through the URL:

adapter: function(params, id, type) {
params.name = 'J. Doe';
params.email = '[email protected]';
params.company = 'company_name';
params.phone = 'phonenumber';
params.employeeid = 'employeeId';
params.function = 'company_function';
params.gender = 'gender';
params.birthday = 'date_of_birth';
params.address = 'address_street";
params.postalcode = 'address_postalcode';
params.city = 'address_place';
params.country = 'address_country';
}

You can find this modified embed code at the Publish > Embed tab of your learning content > Enable CRM integration (GET-integration).

This feature is available with the Advanced plan.

Did this answer your question?