 | DataUpdateServiceInsertUpdateNoteToSchool Method |
Inserts or update the notes for a school.
Namespace:
(Default Namespace)
Assembly:
SeniorSystemsWS (in SeniorSystemsWS.dll) Version: 937.0.0.0 (937.0.0.33)
Syntaxpublic ResultNotes InsertUpdateNoteToSchool(
int entityNo,
string note,
string authKey
)
Public Function InsertUpdateNoteToSchool (
entityNo As Integer,
note As String,
authKey As String
) As ResultNotes
public:
ResultNotes^ InsertUpdateNoteToSchool(
int entityNo,
String^ note,
String^ authKey
)
public function InsertUpdateNoteToSchool(
entityNo : int,
note : String,
authKey : String
) : ResultNotes
function InsertUpdateNoteToSchool(entityNo, note, authKey);
Parameters
- entityNo
- Type: SystemInt32
The entity number of the person sending the message. - note
- Type: SystemString
The text to send to the school - authKey
- Type: SystemString
Authentication Key obtained from the loginExt method in UserManagementService for a current administrator connection.
Return Value
Type:
ResultNotes
A
ResultNotes object.
Exceptions
Remarks
A note can be sent to the school to pass along any information/changes that should be made to someone's account
that cannot be done with any existing methods.
The value in entityNo must reference a parent or constituent.
Success or failure is obtained by checking ResultNotes.Status.
Additional error information is contained in ResultNotes.ErrorType.
The authorization key provided must be linked to an administrator role.
See Also