Upcoming Software Update: Enrol Onboarding

On Thursday, 18th June 2026, we’ll be rolling out a series of improvements to Enrol Onboarding.

Full details of the changes can be found in the release notes below:

Scheduled Downtime: Please note that there will be a brief Eportfolio service interruption between 7:00 and 7:30 AM on the day of the update.


Reduced Support Availability: 8th–9th July 2026

Just to let you know, our team will be attending the Harris Computers all-company meeting on 8th and 9th July 2026, so we won't be as responsive as usual during this time.

You can still access our help guides at any time — just search the Help Centre to find the answers you need. Otherwise, you can submit a ticket and we'll get back to you as soon as possible.

If your issue is urgent, please set the priority accordingly so we can prioritise it on our return.

Thanks for your patience!

Submit a ticket Log in

Assigning users to learners via the API

Overview

This guide forms part of a series designed to support building a data integration with a third‑party system using the Onefile API. It explains how to assign users such as Assessors, IQAs, Employers, and Observers to learners through API endpoints.

This guide is part of the following API series:

User Roles

This API functionality is typically used by:

  • Technical Administrators
  • Integration Developers
  • System Administrators

How to Assign Users to Learners via the API

Different API endpoints are used depending on the type of assignment being made.

Change the Default Assessor or Default Employer

Use the following endpoint:

POST /api/v2.1/User/{id}

The above {id} is the learner userID.

Assign or change the Default Assessor:

{
  "DefaultAssessorID": {id}
}
  

Assign or change the Default Employer:

{
  "DefaultEmployerID": {id}
}
  

Assign Additional Users to a Learner

To assign other user types (Assessors, IQAs, Employers, Observers), use the Assign endpoint:

POST /api/v2.1/User/{id}/Assign

The above {id} is the learner userID. 

The Level parameter determines the type of assignment being made:

Assignment Levels

Assignment LevelUser Role(s)LevelAdditional Data Required
Learning AimAssessor, IQA3StandardID
Unit SummaryAssessor, IQA2UnitID
AdditionalAssessor, IQA, Employer, Observer1None

Examples

Assign or Change Learning Aim Assessor / IQA

POST /api/v2.1/User/{id}/Assign

{
  "LearnerID": {id},
  "Level": 3,
  "StandardID": {id}
}
  

Assign or Change Unit Summary Assessor / IQA

POST /api/v2.1/User/{id}/Assign

{
  "LearnerID": {id},
  "Level": 2,
  "UnitID": {id}
}
  

Assign Additional Assessor / IQA / Employer / Observer

POST /api/v2.1/User/{id}/Assign

{
  "LearnerID": {id},
  "Level": 1
}
  

Next Guide

Assigning Framework Templates, Standards and Units via the API

Terminology

The terminology used in this article may differ depending on your Centre’s configuration.

Related Articles

Need Help?

If you need assistance, please contact Onefile Support or your internal support team.

Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.