Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

Import entitlements different types by REST

BG_IAM
New Contributor III
New Contributor III

Hi,

I try to import 3 different ent types by REST. Currently I am able to import only "Hubs" rest of the types are not created. In logs I can't see any error/ action with them. For "Hubs" its processed correctly.. Any idea what's wrong?

 

 

{
  "accountParams": {},
  "entitlementParams": {
    "connection": "EntitlementAuth",
    "processingType": "SequentialAndIterative",
    "entTypes": {
      "Hubs": {
        "entTypeOrder": 0,
        "call": {
          "call1": {
            "callOrder": 0,
            "stageNumber": 0,
            "http": {
              "url": "https:///api/v2/dataFetcher",
              "httpHeaders": {
              "amd_resource_name": "Hubs",
              "client_id": "",
              "client_secret": ""
              },
              "httpContentType": "application/json",
              "httpMethod": "GET"
            },
            "listField": "value",
            "keyField": "entitlementID",
            "colsToPropsMap": {
              "entitlementID": "Code~#~char",
              "entitlement_value": "Code~#~char",
              "displayname": "Code~#~char",
              "description": "Name~#~char",
              "customproperty1": "LeadCountryCode~#~char",
              "customproperty2": "MgmtOrgGroupName~#~char",
              "customproperty3": "HubManager~#~char",
              "customproperty4": "HubController~#~char",
              "customproperty5": "IsActive~#~char"
            },
            "disableDeletedEntitlements": true
          }
        }
        }
      },
      "Business Units": {
        "entTypeOrder": 1,
        "call": {
          "call1": {
            "callOrder": 0,
            "stageNumber": 0,
            "http": {
              "url": "https:///api/v2/dataFetcher",
              "httpHeaders": {
              "amd_resource_name": "MgmtOrgs",
              "amd_resource_params": "?%24select=Code,Name,Description,IsActive,InLevel,ParentCode&%24filter=InLevel%20eq%202",
              "client_id": "",
              "client_secret": ""
              },
              "httpContentType": "application/json",
              "httpMethod": "GET"
            },
            "listField": "value",
            "keyField": "entitlementID",
            "colsToPropsMap": {
              "entitlementID": "Code~#~char",
              "entitlement_value": "Code~#~char",
              "displayname": "Name~#~char",
              "customproperty5": "IsActive~#~char"
            },
            "disableDeletedEntitlements": true
          }
        }
      },
      "Product Groups": {
        "entTypeOrder": 2,
        "call": {
          "call1": {
            "callOrder": 0,
            "stageNumber": 0,
            "http": {
              "url": "https:///api/v2/dataFetcher",
              "httpHeaders": {
              "amd_resource_name": "MgmtOrgs",
              "client_id": "",
              "client_secret": ""
              },
              "httpContentType": "application/json",
              "httpMethod": "GET"
            },
            "listField": "value",
            "keyField": "entitlementID",
            "colsToPropsMap": {
              "entitlementID": "Code~#~char",
              "entitlement_value": "Code~#~char",
              "displayname": "Name~#~char",
              "description": "Name~#~char",
              "entitlement_glossary": "Description~#~char",
              "customproperty5": "IsActive~#~char",
              "customproperty6": "InLevel~#~number"
            },
            "disableDeletedEntitlements": true
          }
        }
      }
    },
  "acctEntParams": {},
  "entMappingParams": {}
}

 

 

 

2 REPLIES 2

GSR
Regular Contributor
Regular Contributor

Looks like you have added other 2 groups out of entitlementtype query. try attached

BG_IAM
New Contributor III
New Contributor III

Works, thank you!