Is there a health check endpoint for PDS FHIR int?

were developing some health check within our application,
we noted that for sandbox pds fhir the endpoint /personal-demographics/FHIR/R4/_health resulted with a health check, for example:

{
    "status": "pass",
    "ping": "pong",
    "version": {
        "build_label": "192733-sha9d19610e",
        "apigee_base_uri": "https://sandbox.api.service.nhs.uk/personal-demographics/FHIR/R4",
        "version": "v1.2.2259-beta",
        "releaseId": "192737",
        "commitId": "9d19610e78f961afe699ecd9d099965992d11bed"
    }
}

but seems like for integration environment were getting a 404 not found
with an html body:

<html>
<title>404: Not Found</title>
<body>404: Not Found</body>
</html>

is there a different endpoint for the health check in int?
Thanks

Hi,

There is not a /_health endpoint outside the sandbox.

You can however use the /_ping endpoint which doesn’t require any authorisation.

Eg curl "https://int.api.service.nhs.uk/personal-demographics/FHIR/R4/_ping"
returns

{
    "version":"v1.2.2260-beta",
    "revision":"461",
    "releaseId":"193943",
    "commitId":"577a494402fa99ad6d10b02c26b7cb7b762387ef"
}