Adds a skill to a client.
[WebMethod(Description = "Adds a skill to a client")] public TAuthID AddSkillToClient(string token, TClieSkill clieSkill);
Parameters |
Description |
string token |
String containing an authentication token. |
TClieSkill clieSkill |
TClieSkill object containing the client skill details to add. |
TAuthID indicating whether the update was successful and, if so, the ID of the new client skill.
Pass a TClieSkill object containing the details of the client skill to create:
All other TClieSkill properties are not used for the create.
If successful, the returned TAuthID contains an ID property indicating the ID of the new client skill record (which is required if you want to later update the client skill using UpdateClientSkill).
A token is passed for authentication. If the authentication fails, or other errors occur, no record is created. The result of the authentication is represented by a TAuthenticate object.
This function has security level "Protected", and can only be accessed by users that have explicitly been granted permission to the API.
Copyright (c) VETtrak 2022. All rights reserved.
|