Overview


Freja eID allows Relying Parties to manage a single, Relying Party-specific attribute, through the Custom Identifier Management Service. A custom identifier must be unique within the requesting Relying Party system inside the Freja eID service. In other words, Freja eID does not allow two identical custom attributes to be set by the same Relying Party.


In order to set a custom identifier for a user, you need to obtain the existing user information for that user in the Freja eID system and pass it in the call to Freja eID services. This can be the email address the user has connected to Freja eID, their phone number or their personal identity number, if the user has been verified with an ID document, or has achieved the status of Freja eID Plus in Sweden. Once the custom identifier is set for a user, you can ask for that additional information about the user to be returned when initialising an authentication or signature request.


For more detailed information about the Custom Identifier Service API, please refer to Freja eID Relying Party Developers' Documentation.


Initialising Custom Identifier Client


Build an instance of the CustomIdentifierClientApi interface as shown in the examples below. Note that the CustomIdentifierClient has its own Builder class, which is used for instantiation of CustomIdentifierClient objects. This way of creating objects requires passing mandatory parameters in the Builder constructor, while the rest of the parameters can be passed through the Builder setter functions.


Calling the Service


This section describes how to make calls to the Freja eID API in order to set or delete a custom identifier.


Set Custom Identifier


This method is used to set a custom identifier for a specific user. As said before, the existing user information for that user in the Freja eID system must be passed as a parameter of this method.


/*
* Initiate authentication request can be created with EMAIL.
* Change the email value (joe.black@verisec.com in the example) to match your setup.
*/

String email = "joe.black@verisec.com";

/*
* The custom attribute to be set for the end user, it's interpreted as string value.
* Must be unique within the requesting Relying Party system inside the Freja eID service.
*/

String customIdentifier = "joeblack";
SetCustomIdentifierRequest setCustomIdentifierRequest = SetCustomIdentifierRequest
                                 .createDefaultWithEmail(email, customIdentifier);

/*
 * As final result of Set custom identifier method, a custom identifier is
 * set for user. No additional information is returned.
*/

customIdentifierClient.set(setCustomIdentifierRequest);


Delete Custom Identifier


This method is used to delete a custom identifier for a specific user.


/*
* The custom attribute to be deleted for the end user, it's interpreted as string value.
* Must exist within the requesting Relying Party system inside the Freja eID service.
*/

String customIdentifier = "joeblack";

/*
* Delete custom identifier request can be created with custom identifier
*/

DeleteCustomIdentifierRequest deleteCustomIdentifierRequest = DeleteCustomIdentifierRequest
                                                              .create(customIdentifier);
/*
* As final result of Delete custom identifier method, custom identifier is
* deleted for a user within requesting Relying Party system.
* No additional information is returned.
*/

customIdentifierClient.delete(deleteCustomIdentifierRequest);



Relying Parties which are Integrators must set relyingPartyId per request and that can be done only with a custom request. Read more about how Integrator and Integrated Relying Parties can integrate with Freja eID here.


/*
* Parameter relyingPartyId represents a unique ID of the Relying Party
* for which the set/delete custom identifier request should be initiated.
*/

String relyingPartyId = "relying_party_id";
 
/*
* Set custom identifier request with relyingPartyId.
*/

SetCustomIdentifierRequest.createCustom()
                          .setEmailAndCustomIdentifier(email, customIdentifier)
                          .setRelyingPartyId(relyingPartyId)
                          .build();

/*
* Delete custom identifier request with relyingPartyId.
*/

DeleteCustomIdentifierRequest.create(customIdentifier, relyingPartyId);



Go to:

  1. Quick Start Guide
  2. Initialising the Freja eID Client
  3. Authentication Client
  4. Signature Client
  5. Organisation ID Client
  6. Custom Identifier Management
  7. Error Handling