Guide: Enable Organisations to Make Requests to an Application
Prerequisites
Orginization and Application Interaction
1. Add and map a role for the Orginization
mapUserToRole(
id: string,
application: Application,
): ApplicationRole | undefined {
...
if (id === 'xxxxxx-xxxx') { // The nationalId added as claim in the Ids earlier.
return Roles.ORGINISATION_REVIEWER
}
...
},2. Create an interaction state for the orginisation
3. Originisation API requests
Postman local testing setup


Last updated
Was this helpful?