POST api/User/UpdateReminderSettings

Updates the reminder settings of the user

Request Information

URI Parameters

None.

Body Parameters

ReminderSettingsRequest
NameDescriptionTypeAdditional 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.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "OneDay": true,
  "SevenDays": true,
  "ThirtyDays": true,
  "SixtyDays": true,
  "NinetyDays": true
}

application/xml, text/xml

Sample:
<ReminderSettingsRequest 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>
</ReminderSettingsRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Updates the reminder settings of the user

ReminderSettingsResponse
NameDescriptionTypeAdditional 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>