POST api/reminder/remindme
Sets a reminder
Request Information
URI Parameters
None.
Body Parameters
SetReminderCommandDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Title | string |
None. |
|
| Date | date |
None. |
|
| Type | EnumDataContract |
None. |
|
| Priority | EnumDataContract |
None. |
|
| SnoozeCount | integer |
None. |
|
| Data | Dictionary of string [key] and Object [value] |
None. |
|
| ReferenceDate | date |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"Title": "sample string 1",
"Date": "2025-11-18T14:09:22.3108528Z",
"Type": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"Priority": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"SnoozeCount": 3,
"Data": {
"sample string 1": {},
"sample string 3": {}
},
"ReferenceDate": "2025-11-18T14:09:22.3108528Z"
}
Response Information
Resource Description
JobInvocationDetailsDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| SupportsCancellation | boolean |
None. |
|
| ReportsProgress | boolean |
None. |
|
| InitialStatusText | string |
None. |
|
| JobReference | globally unique identifier |
None. |
|
| Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"SupportsCancellation": true,
"ReportsProgress": true,
"InitialStatusText": "sample string 3",
"JobReference": "ee259e59-57a2-47ee-9fff-107a610cc6b1",
"Success": true
}