Search This Blog

Saturday, March 26, 2022

How to setup postman to access IdentityNow api

  • Download the latest version(v3) apis from - https://developer.sailpoint.com/apis/v3/                
  • The downloaded file will come with name - swagger.json 
  •  Download and install postman - https://www.postman.com/downloads/ 
  •  Import the downloaded swagger.json

  • Import will come as collection - SailPoint - SaaS API. Now set the tenant variable "INITIAL VALUE" and "CURRENT VALUE" values in "Variables" tab in Collection   - 













  • Now go to "Authorization" tab in Collection and set the below parameters  - 
    • "Type" - select as "OAuth2.0"
    • In "Configure New Token" section set below parameters - 
      • "Token Name" - Provide any name which you like.
      • "Grant Type" - select as "Client Credentials"
      • "Access Token URL" - provide access token url like https://youtenant.api.identity.com/oauth/token
      • "Client ID"  - Which you have setup in your tenant by admin for you.
      • "Client Secret" - from above step when you setup clientid, it will give you secret as well.
      • Then click on "Get New Access Token"
      • Then click on "Use Token"
  • Now as the access token is setup at collection level, you can use this to hit any end point.

Friday, February 4, 2022

OIM MDS Export & Import

WLST command to export and import from OIM MDS files.

WLST Connection  -

 cd $OIM_HOME/oracle_common/bin

 ./wlst.sh

 connect('weblogic',  'XXXXXX', 't3://host:port')

* Provide weblogic hostname & port

MDS Export command

Export all OIM Files - exportMetadata(application='oim',server='wls_oim1',toLocation='/tmp/mds/oim_mds')

Export all SOA Files - exportMetadata(application='soa-infra',server='wls_soa1',toLocation='/tmp/mds/soa_mds')

MDS Import command

Import all Files - importMetadata(application='oim',server='wls_oim1',fromLocation='/tmp/mds/oim_mds')

Import all SOA Files - importMetadata(application='soa-infra',server='wls_soa1',toLocation='/tmp/mds/soa_mds')