Lightroom Services Health Check
Registered partner applications can check the health of the Lightroom Services through the /v2/health
API on the https://lr.adobe.io
endpoint. The health check requires only the API key obtained by Creating an Integration.
Sample cURL might be:
Copied to your clipboardcurl -H "X-API-Key: NEW_API_KEY" https://lr.adobe.io/v2/health
with an expected response of the form:
Copied to your clipboardwhile (1) {}{"version":"aaf68f5ea64545693f3add0c309d420d42653bb0"}
If the API key is not subscribed to the Lightroom Services, an error will be returned:
Copied to your clipboardwhile (1) {}{"code":"403003", "description":"Api Key is invalid"}
Any other error indicates that the Lightroom Services are down. Partner applications are advised to retry the check with an exponential backoff in time until the service is restored.