Checking the certificate type in SAP SuccessFactors Using the function import of SAP SuccessFactors, you can check the certificate type currently used for SSO. This OData API function import is fully documented at https://help.sap.com/viewer/28bc3c8e3f214ab487ec51b1b8709adc/latest/en-US/8d5e8e93f4be4c1dadda42626940cc45.html The sample calls here are made against Skillsoft’s demo tenant, SFPART056587 on DC8.The same process must be followed for any SAP SuccessFactors tenant integrated with Skillsoft. GET https://apisalesdemo8.successfactors.com/odata/v2/getSFIDPCertType?acsurl='https://partlms0154.scdemo.successfactors.com/learning/saml/SSO' Response: {"acsurl":"https://partlms0154.scdemo.successfactors.com/learning/saml/SSO","certType":"sha1","module":""} Success Updating the certType to SHA-2 in SAP SuccessFactors tenant After completing the configuration settings on Skillsoft, please update the module name and the certType on the connected SAP SuccessFactors tenant. The below sample call is for the Skillsoft demo tenant configuration. POST https://apisalesdemo8.successfactors.com/odata/v2/updateSFIDPCertType Request body { "acsurl": "https://partlms0154.scdemo.successfactors.com/learning/saml/SSO", "module":"skillsoft", "certType":"sha2" } Success