Skip to main content
GET
/
v1
/
partner-auth-probe
Validate partner API key (read)
curl --request GET \
  --url https://api.idunox.com/v1/partner-auth-probe \
  --header 'X-Api-Key: <api-key>'
{
  "error": {
    "code": "INVALID_API_KEY",
    "message": "Invalid or expired API key",
    "requestId": "550e8400-e29b-41d4-a716-446655440000"
  }
}
Use this endpoint to validate that your API key is active and resolves to a valid account. Returns 204 when credentials are valid — no body.
ResponseMeaning
204 No ContentCredentials are valid
401 UnauthorizedMissing or invalid API key
403 ForbiddenAccount inactive
This endpoint returns 204 with no body. Contact partner@idunox.com to confirm your Health Yourself account setup.

Example request

curl -H "Authorization: Bearer <your-api-key>" \
     https://api.idunox.com/v1/partner-auth-probe

Authorizations

X-Api-Key
string
header
required

Plaintext API key issued for the tenant (stored hashed server-side).

Headers

x-request-id
string

Optional; echoed when possible. Server generates when absent.

Response

Valid credentials