Eportfolio Mobile App Update - Android and iOS

Our newest Onefile Eportfolio mobile app update is now available. Grab your free download now!

Version: 2.0.13

Play Store: Onefile Eportfolio App on the Google Play Store

App Store: Onefile Eportfolio App on the Apple App Store



Upcoming System Update: Eportfolio

On Tuesday, 31st March 2026, we’ll be rolling out a series of improvements to Eportfolio.

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

Downtime: There will be Eportfolio downtime between 7am - 7:30am. Please make sure to save any data and log out before 7am.

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.