Note: This feature is in Beta right now. Parent Approvals for Academic Plan are the only supported feature.
This endpoint allows 3d parties to send Alerts and Action Alerts to Parents/Students/Teachers and Users
Alerts
Security Area:
- "Alerts"
URL(s):
- api/v5/SendAlert/{alert}
- SchoolCode is required
- For Action Alerts the StudentID or StudentNumber should be used
- Both Parents will receive the Alert
- For Alerts only the RecipientID is needed
- PageID will link the Alert to a specific page.
Field Documentation:
| Name | Table.Column | Datatype | Description |
| SchoolCode | DAA.SC | int | Aeries School Code |
| StudentNumber | DAA.SN | long | Student Number |
| StudentID | DAA.ID | long | Permanent ID |
| OtherID | DAA.OID | string | User-assigned ID |
| RecipientID | DAA.RID | long | Recipient ID - Aeries Account ID, depending on User Type is matched to:
|
| RecipientType | DAA.RTY | string | User Type
|
| PageID | DAA.PG | string | Page ID - See Documentation |
| Comment | DAA.CO | string | Comment |
| AlertType | DAA.TY | string | "Alert" or "ActionAlert" |
Example of an Alert payload:
{
"SchoolCode":"994",
"RecipientID":"937",
"RecipientType":"User",
"PageId":"100019196",
"Comment":"Please review the changes",
"AlertType":"Alert"
}Example of an ActionAlert payload for Parent Approval of Academic Plan:
{
"SchoolCode":"994",
"StudentID":"99400028",
"RecipientType":"Parent",
"PageId":"100019196",
"Comment":"Please approve the changes",
"AlertType":"ActionAlert"
}