Package com.vortexsoftware.sdk


package com.vortexsoftware.sdk
Vortex Java SDK for invitation management and JWT generation.

This package provides a complete Java SDK for integrating with the Vortex API, offering the same functionality as the Node.js SDK with full compatibility for React providers and other frontend frameworks.

Key features:

  • JWT generation with identical algorithm to Node.js SDK
  • Complete invitation management (CRUD operations)
  • Group-based invitation operations
  • Spring Boot auto-configuration
  • Comprehensive error handling

Basic usage:


 VortexClient client = new VortexClient("your-api-key");

 // Generate JWT
 JWTPayload payload = new JWTPayload("user-123", identifiers, groups, "admin");
 String jwt = client.generateJWT(payload);

 // Get invitations
 List<InvitationResult> invitations = client.getInvitationsByTarget("email", "user@example.com");

 client.close();
 
Since:
1.0.0
  • Class
    Description
    Main Vortex SDK client for Java applications Provides JWT generation and Vortex API integration with the same functionality as the Node.js SDK, ensuring compatibility with React providers.
    Exception thrown by Vortex SDK operations