Skip to main content

POST /auth/users/register

Registers a new user using their auth0_id from the JWT sub claim.

This endpoint does not register the user on policy-svc. If your deployment runs the policy service, use /auth/users/register-with-policy instead — otherwise every signing request from this user is denied.

Used in flow: Initial app setup during sign-up/registration

Authentication: JWT (Access Token)

Request

Authorization: Bearer <access_token>
Content-Type: application/json
{
"access_token": "string"
}

Response

201 Created / 200 OK
{
"success": true,
"message": "User registered successfully"
}