Skip to main content

REST User Management SAP Provider

The implementation class of the REST User Management SAP Provider is:

com.czertainly.trident.sam.sap.RestUserManagementSapProvider

The following properties can be configured for the REST User Management SAP Provider:

PropertyDescriptionDefault ValueMandatory
UM_SAP_PROVIDER_URLURL where is the REST interface implemented for user management operations by the SIC. The URL should implement REST interface of this provider.NONEYES
UM_SAP_PROVIDER_AUTH_TYPEAuthorization type for the REST API. Supported values are:
  • NONE
  • BASIC
See information about the authentication properties below.
NONEYES

Authorization types

BASIC

UM_SAP_PROVIDER_AUTH_TYPE = BASIC needs additional properties to be configured, in particular:

PropertyDescriptionDefault ValueMandatory
UM_SAP_PROVIDER_USERNAMEIdentification of the user.NONEMandatory for UM_SAP_PROVIDER_AUTH_TYPE = BASIC
UM_SAP_PROVIDER_PASSWORDPassword for the username.NONEMandatory for UM_SAP_PROVIDER_AUTH_TYPE = BASIC

OpenAPI Definition

openapi: 3.0.3
info:
title: REST User Management SAP Provider
version: v1
paths:
/changePassword:
post:
operationId: buildChangePassword
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/BuildChangePasswordRequestDTO'
required: true
responses:
"200":
description: OK
content:
'*/*':
schema:
$ref: '#/components/schemas/BuildChangePasswordResponseDTO'
components:
schemas:
BuildResponseDTO:
type: object
properties:
body:
type: array
items:
type: string
format: byte
nonce:
type: array
items:
type: string
format: byte
BuildChangePasswordRequestDTO:
type: object
properties:
userId:
type: string
initPwd:
type: string
totpSeed:
type: string
BuildChangePasswordResponseDTO:
type: object
properties:
changePasswordRequest:
$ref: '#/components/schemas/BuildResponseDTO'