POST api/Education/SaveAdminNotification
Request Information
URI Parameters
None.
Body Parameters
ED_AdminNotificationModel| Name | Description | Type | Additional information |
|---|---|---|---|
| DBNo | integer |
None. |
|
| AppNo | integer |
None. |
|
| AdminNotificationID | integer |
None. |
|
| AdminID | integer |
None. |
|
| UserProfileID | integer |
None. |
|
| ProfessionCode | string |
None. |
|
| string |
None. |
||
| Cc_Email | string |
None. |
|
| Content | string |
None. |
|
| OperatingUnitID | integer |
None. |
|
| AssignedDepartmentID | integer |
None. |
|
| AssignedPositionID | integer |
None. |
|
| EmployeementTypeID | integer |
None. |
|
| NotificationStatus | string |
None. |
|
| IsActive | boolean |
None. |
|
| IsDelete | boolean |
None. |
|
| CreatedDate | date |
None. |
|
| CreatedBy | integer |
None. |
|
| UpdatedDate | date |
None. |
|
| UpdatedBy | integer |
None. |
|
| ApproveDate | date |
None. |
|
| ApprovedBy | integer |
None. |
|
| Notes | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"DBNo": 1,
"AppNo": 1,
"AdminNotificationID": 1,
"AdminID": 1,
"UserProfileID": 1,
"ProfessionCode": "sample string 1",
"Email": "sample string 2",
"Cc_Email": "sample string 3",
"Content": "sample string 4",
"OperatingUnitID": 1,
"AssignedDepartmentID": 1,
"AssignedPositionID": 1,
"EmployeementTypeID": 1,
"NotificationStatus": "sample string 5",
"IsActive": true,
"IsDelete": true,
"CreatedDate": "2026-04-06T21:33:06.6486363-05:00",
"CreatedBy": 1,
"UpdatedDate": "2026-04-06T21:33:06.6486363-05:00",
"UpdatedBy": 1,
"ApproveDate": "2026-04-06T21:33:06.649848-05:00",
"ApprovedBy": 1,
"Notes": "sample string 6"
}
application/xml, text/xml
Sample:
<ED_AdminNotificationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model"> <AdminID>1</AdminID> <AdminNotificationID>1</AdminNotificationID> <AppNo>1</AppNo> <ApproveDate>2026-04-06T21:33:06.649848-05:00</ApproveDate> <ApprovedBy>1</ApprovedBy> <AssignedDepartmentID>1</AssignedDepartmentID> <AssignedPositionID>1</AssignedPositionID> <Cc_Email>sample string 3</Cc_Email> <Content>sample string 4</Content> <CreatedBy>1</CreatedBy> <CreatedDate>2026-04-06T21:33:06.6486363-05:00</CreatedDate> <DBNo>1</DBNo> <Email>sample string 2</Email> <EmployeementTypeID>1</EmployeementTypeID> <IsActive>true</IsActive> <IsDelete>true</IsDelete> <Notes>sample string 6</Notes> <NotificationStatus>sample string 5</NotificationStatus> <OperatingUnitID>1</OperatingUnitID> <ProfessionCode>sample string 1</ProfessionCode> <UpdatedBy>1</UpdatedBy> <UpdatedDate>2026-04-06T21:33:06.6486363-05:00</UpdatedDate> <UserProfileID>1</UserProfileID> </ED_AdminNotificationModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | ResultStatus |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 100,
"Message": "sample string 1",
"Data": {}
}
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Generics"> <Data /> <Message>sample string 1</Message> <Status>Success</Status> </Result>