IdentityXAPIAuthn
Check if IdentityX is set up
Returns 204 while setup is still pending (no first account yet) and 409 once the system has been set up — used by installers to decide whether to show the setup form. Public.
GET
/auth/setupReturns 204 while setup is still pending (no first account yet) and 409 once the system has been set up — used by installers to decide whether to show the setup form. Public.
Response Body
application/json
curl -X GET "https://example.com/auth/setup"Empty
{
"code": 0,
"message": "string",
"error": {
"code": "BAD_REQUEST",
"message": "string",
"fields": [
{
"field": "string",
"message": "string"
}
],
"meta": {},
"debug": {
"raw_error": "string",
"stack_trace": "string"
}
},
"timestamp": "2019-08-24T14:15:22Z",
"module": "IdentityX"
}Health check GET
Harness-owned liveness probe. Returns 200 with a fixed body when the process is up. Not covered by rate limiting or auth.
Set up IdentityX POST
Creates the first account in the system as a super admin and enables authn. Succeeds only once — subsequent calls return 409 ("setup already complete"). Returns the freshly issued token pair (201).