Update the AVETMISS details of a Web Employee.
A Web Employer Enrolment must have previously been created, see AddEmployerWebEnrolment. This function records AVETMISS details for the Employee in the given Web Employer Enrolment. Any existing AVETMISS details for the Web Employee are replaced.
A Web Enrolment ID (iWebe_ID) is passed as a parameter. This should be the ID returned by the AddEmployerWebEnrolment function.
This function should not be used to update details of clients who are individually enrolled into a Web Enrolment. In these cases, use UpdateWebClientAVETMISS.
A token is passed for authentication. If the authentication fails, or other errors occur, nothing is updated . The result of the authentication is represented by a TAuthenticate object.
Requires a valid registration key entry for the Bookings feature.
This function has security level "Protected", and can only be accessed by users that have explicitly been granted permission to the API.
[WebMethod(Description = "Records the specified additional AVETMISS data against the existing enrolled employee specified by the web client ID")] public TAuthenticate UpdateWebEmployeeAVETMISS(string sToken, int iWecl_ID, string sCoun_Code, string sEmca_Code, string sLang_Code, string sScle_Code, string sPriorEdFlag, string sDisabilityFlag, string sAtSchoolFlag, int iYearCompleted, string sWhereCompleted, string sProfSpokEngFlag, string sAboriginalFlag, List<TDisa> dlDisabilityList, List<TPred> plPriorEdList);
Parameters |
Description |
string sToken |
String containing a token. |
int iWecl_ID |
Integer - Client ID of Web Employee. |
string sCoun_Code |
String - Code for Country where Client was born. See GetCountryList for Valid Country Codes. |
string sEmca_Code |
String - Code for Client's Employment Category. See GetEmploymentCategoryList for Valid Employment Category Codes. |
string sLang_Code |
String - Code for Language spoken by Client at home. See GetLanguageList for Valid Language Codes. |
string sScle_Code |
String - Code for School Level attained by Client. See GetSchoolLevelList for Valid School Level Codes. |
string sPriorEdFlag |
String - Prior Education Achievement Flag. Valid Prior Education Flags are:
|
string sDisabilityFlag |
String - Disability Flag. Valid Disability Flags are:
|
string sAtSchoolFlag |
String - At (Secondary) School Flag. Valid At School Flags are:
|
int iYearCompleted |
Integer - Year Client's Highest School Level was attained. |
string sWhereCompleted |
String - Where Client's Highest School Level was attained. Maximum length 50 characters. |
string sProfSpokEngFlag |
String - Proficiency in Spoken English Flag. Valid Flags are:
|
string sAboriginalFlag |
String - Aboriginal Flag. Valid Flags are:
|
List<TDisa> dlDisabilityList |
List of TDisa - List of Disability items relating to Client. |
List<TPred> plPriorEdList |
List of TPred - List of Prior Education items relating to Client. |
TAuthenticate : an Authenticate Object containing the result of the update.
Copyright (c) VETtrak 2022. All rights reserved.
|