GET api/User/GetReminderSettings?userId={userId}
Retrieves the reminder settings of the user which matches the "userId" passed in
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId |
The Id of the user |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns the reminders settings of the user
ReminderSettingsResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Id of the user |
integer |
None. |
| OneDay |
Whether notifications about Expiring domains and SSl certificates are sent everyday |
boolean |
None. |
| SevenDays |
Whether notifications about Expiring domains and SSl certificates are sent every seven days |
boolean |
None. |
| ThirtyDays |
Whether notifications about Expiring domains and SSl certificates are sent every thirty days |
boolean |
None. |
| SixtyDays |
Whether notifications about Expiring domains and SSl certificates are sent every sixty days |
boolean |
None. |
| NinetyDays |
Whether notifications about Expiring domains and SSl certificates are sent every ninety days |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"OneDay": true,
"SevenDays": true,
"ThirtyDays": true,
"SixtyDays": true,
"NinetyDays": true
}
application/xml, text/xml
Sample:
<ReminderSettingsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Expirify.Api.Models.User"> <Id>1</Id> <NinetyDays>true</NinetyDays> <OneDay>true</OneDay> <SevenDays>true</SevenDays> <SixtyDays>true</SixtyDays> <ThirtyDays>true</ThirtyDays> </ReminderSettingsResponse>