Creating and configuring custom user fields

Это возможно, да:

В вашей конечной точке SSO вы можете сопоставить утверждение с полезной нагрузкой, например:

const ssoPayload = {
  nonce: nonce,
  email: user.email,
  external_id: user.sub,
  username: user.nickname,
  name: user.name,
  add_groups: a_custom_group,
  'custom.user_field_1': user['https://yourdomain.com/company_id'],
  'custom.user_field_2':  [и так далее...]
3 лайка