POST api/reminders
Request Information
URI Parameters
None.
Body Parameters
Reminder| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CreatedAt | date |
None. |
|
| Date | date |
None. |
|
| Message | string |
None. |
|
| StudentPid | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"CreatedAt": "2026-08-29T02:16:55.5797288-07:00",
"Date": "2026-08-29T02:16:55.5797288-07:00",
"Message": "sample string 3",
"StudentPid": 1
}
application/xml, text/xml
Sample:
<Reminder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SCCApi.Models"> <CreatedAt>2026-08-29T02:16:55.5797288-07:00</CreatedAt> <Date>2026-08-29T02:16:55.5797288-07:00</Date> <Id>1</Id> <Message>sample string 3</Message> <StudentPid>1</StudentPid> </Reminder>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.