Update the AVETMISS details of a Web Client.
A Client Web Enrolment must have previously been created, see AddClientWebEnrolment. This function records AVETMISS details for the Client in the given Web Enrolment. Any existing AVETMISS details for the Web Client are replaced.
A Web Enrolment ID (iWebe_ID) is passed as a parameter. This should be the ID returned by the AddClientWebEnrolment function.
This function should not be used to update details of clients who are part of an Employer Web Enrolment. In these cases, use UpdateWebEmployeeAVETMISS.
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 Short Courses 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 AVETMISS data against the client linked to the specified web enrolment ID")] public TAuthenticate UpdateWebClientAVETMISS(string sToken, int iWebe_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 iWebe_ID |
Integer ID of Web Enrolment. |
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.
|