You'll need the following credentials to integrate with our authentication service:
Unique identifier for your application
Used for server-to-server authentication
Keep this secure and never expose it client-side
https://your-auth-server.com/apix-api-key: your-app-api-key
Content-Type: application/json
Authorization: Bearer user-token # For user-specific operationscurl -X POST "https://your-auth-server.com/api/auth/register" \
-H "x-api-key: your-app-api-key" \
-H "Content-Type: application/json" \
-d '{
"email": "test@example.com",
"password": "securepassword123",
"confirmPassword": "securepassword123",
"firstName": "Test",
"lastName": "User",
"appId": "your-app-id"
}'Standard user with basic access (default role)
Administrator with role management privileges
Moderator role for content management
Member role with extended privileges