...
Note |
---|
For each Integrated Relying Party, as well as for the Integrator Relying Party itself, Freja eID generates a unique identifier called relyingPartyId. TheIntegrator Relying Party needs to pass this identifier in each request. Read more about Integrator and Integrated Relying Parties here. |
Code Block | ||
---|---|---|
| ||
/* * 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"; /* * Get user custodianship status request with relyingPartyId. */ GetUserCustodianshipStatusRequest.createCustom() .setUserCountryIdAndCrn(countryIdAndCrn) .setRelyingPartyId(relyingPartyId) .build(); |
...