Hi,
As you are using the Restful gateway, any metadata requirements for FSM will be adhered to when creating/updating records as this will relate to the SQL tables.
Anything in app params such as password complexity and password last used will be ignored as the Restful Gateway will not be able to read these configurations.
Kind regards,
Paul
Dear Paul
Thank you for the clarification. This was also our presumption.
Anyhow: an API must keep the system integrity, there should not be a different behavior as from Screen. How to link the API call with the system parameters? Any ideas or recommendations?
Kind Regards
Monica
Hi,
I don’t believe there is a way to link the ResfulAPI call with the FSM system parameters.
However, there is a password_history table that can be referenced by the API call and this table has a reuse_dt column that lists the earliest date that the password can be re-used.
Your API can be use this table as validation before updating the password in the person table.
Kind regards,
Paul
Hi Paul
We are checking this now. Coming back with the results soon.
Thank you very much for your support so far
Kind Regards
Monica
For documentation purpose, might be that also others will encounter the same issue: the password is saved very good secured, with changeable key. so if we use password A, on SQL level is saved as A_encrypted_version1. Using again A later, we have on SQL level A_encrypted_version2, so way to match and check the reuse_dt since we can’t see it is password A the second time. So from mobile or others, using API the system integrity is not covered.
Opened a Case by IFS and awaiting reply. Support was able to reproduce.