View SSL Certificate Reminder Settings

Retrieve the SSL certificate reminder configuration for a specific resource by providing its service_id in the URL path. This endpoint returns the settings associated with SSL expiration alerts — including how many days before expiration the reminder is set to trigger.

It helps teams verify that reminders are properly configured to avoid missing certificate renewals, ensuring continuous HTTPS availability and trust for end users.

Use cases:
  • Reminder audit — Check if SSL alerts are enabled and set to trigger within the appropriate timeframe (e.g., 7 or 14 days in advance).
  • Team coordination — Review reminder settings before transferring certificate management responsibilities.
  • Expiration risk reduction — Ensure every active SSL-enabled service has a reminder set to prevent lapses.

To update the timing or configuration of an existing reminder, use the Update SSL Reminder endpoint.

Authorization: Bearer YOUR_TOKEN

Path Parameters
  • id string
    The unique ID of the resource whose SSL reminder will be retrieved.
    Example: 'c03b02ec-244f-4d2c-8f68-3910071ed5c8'
JavaScript
Response codes
const axios = require('axios');

const url = 'https://resource-query.api.pinghome.io/v1/resource/c03b02ec-244f-4d2c-8f68-3910071ed5c8/ssl/reminder';

axios.get(url, {
    headers: {
        'Authorization': 'Bearer YOUR_TOKEN'
    }
})
.then(response => {
    console.log(response.data);
})
.catch(error => {
    console.error(error);
});
ResponseThis section is used to view the possible HTTP response codes returned by the API. These codes indicate the status of a request, such as 201 (Created), 401 (Unauthorized), 409 (Conflict), or 422 (Unprocessable Entity).