lob-node icon indicating copy to clipboard operation
lob-node copied to clipboard

Request for a Health Check Endpoint in Lob API

Open vinitshahdeo opened this issue 2 years ago • 0 comments

Issue Description:

Is there a way to monitor the status of the Lob API and check its operational health? It would be beneficial to have a dedicated endpoint for health checks to ensure the Lob API's reliability and availability.

Workaround Question:

I noticed there is a workaround for checking the status by listing addresses, as shown below:

Lob.addresses.list((err, body) => {
  if (err) return callback(err);
  return callback(null, body.data);
});

Could you please clarify whether using the "list" API for health checks counts towards the API usage and contributes to pricing? I couldn't find any information about the address listing in the pricing details provided here: Lob Pricing.

Thank you in advance for your assistance in clarifying these points.

vinitshahdeo avatar Sep 05 '23 16:09 vinitshahdeo