
Trigger a READ Job : https://api.sap.com/api/IPS_Proxy/resource/Jobs
To Retrieve the Job Logs : https://api.sap.com/api/IPS_Proxy/resource/JobLogs
To Trigger the READ Job for the Source System with UUID
To extract the Job Logs for the Job Id
Below template is ready for using in Visual Studio Code and replace your actual tenant details for usage
@clientid = XXXXXXXXXXXXXXXXXXX ### Replace
@clientsecret = XXXXXXXXXXXXXXXX ### Replace
@ias = https://XXX.accounts.ondemand.com ### Replace
# login
POST {{ias}}/oauth2/token?grant_type=client_credentials
Content-Type: application/x-www-form-urlencoded
Authorization: Basic {{clientid}}:{{clientsecret}}
### Access Token for Portal Users
@accessToken = {{login.response.body.access_token}}
### https://api.sap.com/api/IPS_Proxy/overview
### XXXXXXXXXXXXXXX is your source System connector Id
POST {{ias}}/ips/service/publicapi/v1/startJob/XXXXXXXXXXXXXXX/jobs/READ
Authorization: Bearer {{accessToken}}
Content-Type: application/json
### To Get Job Logs
#### XXXXXXX = Replace Job id selected for the Particular Job from your tenant
GET {{ias}}/ips/service/publicapi/v1/jobLogs/XXXXXXXXXXXX?logType=commonLog&action=export
Authorization: Bearer {{accessToken}}
Content-Type: application/json
########## Not available for Public - Avaiable within Browser Sessions ########
###
GET {{ias}}/ips/service/publicapi/v1/sourceSystems
Authorization: Bearer {{accessToken}}
Content-Type: application/json
###
GET {{ias}}/ips/service/uiapi/v1/systems?mode=read&page=0&size=20
Authorization: Bearer {{accessToken}}
Content-Type: application/json
###
GET {{ias}}/ips/service/uiapi/v1/systems?mode=write&page=0&size=20
Authorization: Bearer {{accessToken}}
Content-Type: application/json
###
GET {{ias}}/ips/service/publicapi/v1/systems/5ff94c5b-30ea-4ba5-9ef7-ed48768e3fcc
Authorization: Bearer {{accessToken}}
Content-Type: application/json
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
22 | |
13 | |
12 | |
7 | |
6 | |
6 | |
6 | |
5 | |
5 | |
5 |