User Activation

REL-ID User Activation Endpoint

Endpoint:
GET /relid/authserver/register

Description:
This endpoint initiates the REL-ID user credential setup process via a web interface. It is used when a REL-ID user needs to activate their account and configure credentials such as passwords or biometric preferences.

Upon successful activation, the user is redirected to the registered redirect URI associated with the provided token.


🔐 Authentication

No authentication required.


📥 Query Parameters

NameTypeRequiredDescription
tokenstringYesA valid activation token for the user

📥 Request Headers

No headers required.


📤 Request Body

No request body.


📬 Response

A successful request results in a 302 Redirect to the redirect URI with an authorization code and optional state.


📘 Example Request

GET https://auth.relid.com:8006/relid/authserver/register?token=9d14686f-6a3e-4506-a260-c4fc77da7071

📘 Example Response

HTTP/1.1 302
X-FRAME-OPTIONS: DENY
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains 
Set-Cookie: SESSION=; Max- Age=0; Expires=Thu, 1 Jan 1970 
00:00:00 GMT; Path=/relid/authserver/; Secure; HttpOnly; SameSite=Lax 
Location: 
https://auth.relid.com:8006/relid/authserver/oauth/authorize?client_id=YzA
4MjlmNjgtNGIZC00MmFjLTgyOWYtNjg0YjRkMTJhY2I0&response_type=code&scope=all+
openid&state=12345&redirect_uri=https://localhost:8080/
Content-Language: en
Content-Length: 0
Date: Mon, 31 Jan 2022 11:14:27 GMT
Keep-Alive: timeout=60
Connection: keep-alive

📝 Notes

  • The redirect URI is predefined during client registration.
  • This is part of the web-based activation flow initiated by the enterprise.