Human Capital Management Blog Posts by SAP
cancel
Showing results for 
Search instead for 
Did you mean: 
Yogananda
Product and Topic Expert
Product and Topic Expert
565

 

With real-time insights into agent effectiveness, hierarchies and relationships, training, and compliance information, including certifications, you can better engage with your Insurance agents and empower them to support your company’s mission and goals. 2025-05-01_18-45-11.png

Data Transfer between SAP Successfactors ALM to Incentive Management via API Orchestration 2025-05-01_18-51-04.png

Introducing Incentive Management APIs to consume data from ALM.

Note

  • Below APIs are under feature flag option, Kindly contact SAP Support Team for enabling the services in your tenants.
  • Kindly check in table : CS_InstalledProduct contains your subscription for ALM tenant provisioned and integrated with Incentive Management.

Below APIs are still undocumented in https://api.sap.com and purpose of the blog is to provide Partners, customers to make use of the below APIs till such time
2025-05-01_19-13-54.png

To try copy the below template and paste in Visual Studio Code with RestClient Extension Installed

https://github.com/yogananda-muthaiah/SAP-Sucessfactors-Incentive-Management/blob/main/APIs/GCP/True...

@clientid = XXXXXXXXXXXXXXXXXXXXXX
@clientsecret = XXXXXXXXXXXXXXXXXXXXXXXX
@k8 = https://XXXX.app.commissions.cloud.sap
@ias = https://XXXXXXXX.accounts.ondemand.com
@password = YYYYYYYYYYYYYYYYYYY       
@username = XXXXXXXXXXXXXXXXXXX



######################  Portal Users ######################################
###  API Documentation
### https://XXXX.app.commissions.cloud.sap/usersvc/apidoc/#

###
#  login
POST {{ias}}/oauth2/token?grant_type=client_credentials
Content-Type: application/x-www-form-urlencoded
Authorization: Basic {{clientid}}:{{clientsecret}}

###
@accessToken = {{login.response.body.access_token}}


###
GET {{k8}}/mtsvc/tcmp/rest/v2/contractTypes
Content-Type: application/json
Authorization: Bearer {{accessToken}}

###
GET {{k8}}/mtsvc/tcmp/rest/v2/appointmentTypes
Content-Type: application/json
Authorization: Bearer {{accessToken}}

###
GET {{k8}}/mtsvc/tcmp/rest/v2/contractTypes
Content-Type: application/json
Authorization: Bearer {{accessToken}}

###
GET {{k8}}/mtsvc/tcmp/rest/v2/producerTypes
Content-Type: application/json
Authorization: Bearer {{accessToken}}

###
GET {{k8}}/mtsvc/tcmp/rest/v2/producerAddressTypes
Content-Type: application/json
Authorization: Bearer {{accessToken}}

###
GET {{k8}}/mtsvc/tcmp/rest/v2/producerAddresses
Content-Type: application/json
Authorization: Bearer {{accessToken}}

###
GET {{k8}}/mtsvc/tcmp/rest/v2/producers
Content-Type: application/json
Authorization: Bearer {{accessToken}}

###
GET {{k8}}/mtsvc/tcmp/rest/v2/licenseTypes
Content-Type: application/json
Authorization: Bearer {{accessToken}}

###
GET {{k8}}/mtsvc/tcmp/rest/v2/statusCodes
Content-Type: application/json
Authorization: Bearer {{accessToken}}


###
GET {{k8}}/mtsvc/tcmp/rest/v2/licenseLines
Content-Type: application/json
Authorization: Bearer {{accessToken}}

###
GET {{k8}}/mtsvc/tcmp/rest/v2/licenses
Content-Type: application/json
Authorization: Bearer {{accessToken}}

###
GET {{k8}}/mtsvc/tcmp/rest/v2/licenseTypes
Content-Type: application/json
Authorization: Bearer {{accessToken}}

###
GET {{k8}}/mtsvc/tcmp/rest/v2/appointments
Content-Type: application/json
Authorization: Bearer {{accessToken}}

###
GET {{k8}}/mtsvc/tcmp/rest/v2/jurisdictions
Content-Type: application/json
Authorization: Bearer {{accessToken}}

###
GET {{k8}}/mtsvc/tcmp/rest/v2/appointmentLines
Content-Type: application/json
Authorization: Bearer {{accessToken}}

###
GET {{k8}}/mtsvc/tcmp/rest/v2/lineOfAuthorities
Content-Type: application/json
Authorization: Bearer {{accessToken}}

###
GET {{k8}}/mtsvc/tcmp/rest/v2/contracts
Content-Type: application/json
Authorization: Bearer {{accessToken}}

###
GET {{k8}}/mtsvc/tcmp/rest/v2/continuingEducations
Content-Type: application/json
Authorization: Bearer {{accessToken}}

Examples of all GET Method

2025-05-01_18-56-40.png

2025-05-01_18-56-10.png

2025-05-01_18-55-55.png

2025-05-01_18-55-36.png