Skip to main content

About SAP SuccessFactors

SAP SuccessFactors is SAP’s cloud HCM suite - core HR (Employee Central), performance and goals, recruiting, onboarding, and time management. Serval connects to one SuccessFactors tenant per connection - the connection is named “SAP SuccessFactors [Company ID]” - and calls the tenant’s OData V2 APIs on demand when your workflows run. Authentication: OAuth 2.0 with SAML 2.0 bearer assertions - the only method SAP supports for new integrations (HTTP Basic Auth retires in November 2026). Serval signs a short-lived SAML assertion with a private key whose X.509 certificate is registered on an OAuth client in your tenant, exchanges it for a bearer token, and refreshes automatically. Serval can generate the key pair for you, so the private key never leaves Serval and you only ever handle the public certificate - SAP’s recommended setup. Data sync: On demand only. SuccessFactors data is read or written when a workflow step runs - there is no background sync or entity ingestion.

What the SuccessFactors integration enables

Serval exposes one typed API request action per module, all calling the tenant’s /odata/v2 root. Entities from modules your tenant doesn’t license return permission errors - that’s expected and doesn’t indicate a broken connection.

Permissions model

SuccessFactors OAuth tokens carry no scopes. What a connection can access is controlled entirely by the role-based permissions (RBP) of the API user you name in the connection. Create a dedicated API user and grant it a permission role with exactly the OData entity access your workflows need.

Before you start

You need:
  • Admin access to your SuccessFactors tenant with the Manage Integration Tools → Manage OAuth2 Client Applications permission.
  • Your tenant’s API server and company ID. Both are visible to admins in Admin Center → API Center; the company ID is also shown in the upper-right corner of Admin Center. The API server is data-center specific (for example api4.successfactors.com) - if you’re unsure, ask whoever administers your tenant, or see SAP’s List of SAP SuccessFactors API Servers.

Step 1 - Create a dedicated API user

1

Create the user

Create a user such as sfapi.serval. A dedicated user keeps the connection’s access auditable and independent of any employee’s account.
2

Grant it a permission role

In Admin Center → Manage Permission Roles, create a role for the integration and assign it to the API user (via a permission group). Grant the OData API access your workflows need - typically User Search under General User Permission, plus the Employee Central API permissions (effective-dated entities) if you use Employee Central, and module permissions for anything else your workflows touch (Recruiting, Time Off, and so on).
Grant the minimum entity access your workflows need. The API user’s role is the connection’s entire authorization surface - there are no OAuth scopes to narrow it further.

Step 2 - Register the OAuth client and connect

In Serval, open the SAP SuccessFactors integration and choose Connect. Fill in the API server and company ID, then:
Consider enabling Bind to Users on the OAuth client and binding it to your API user, so only that user can request tokens for this client. Also note: changing or regenerating the certificate on a registered client invalidates the existing configuration - rotate by updating both sides together.

Troubleshooting