Provision SCIM enterprise schema attributes

I couldnt find documentation on this but im trying to figure out how to provision attributes on non core schema (i.e. enterprise schema) attributes via IDN. I can see via logs that idn is attempting to provision all my attributes set in create policy to ootb core schema which isnt what i want to do

provisioning will be based on the provisioning policy created per app. Can you paste your provisioningPolicies json and explain what you expect vs what the system is trying to do ?

Please check the above link and let us know if you are facing any issue in configuring the provisioning policy.

Hi @Jhayes90 The behavior of IDN is whenever a create operation happens for a source it looks for the attributes configured in Create Policy and tries to create account based on these attributes on the target. Can you let me know what exactly is your requirement.

Any non std schema attribute that is not required during create can be removed from your policy

POST /scim/v2/org_id/Users
Authorization: Bearer
{
“schemas”: [
“urn:ietf:params:scim:schemas:core:2.0:User”,
“urn:ietf:params:scim:schemas:extension:outreach:2.0:User”
],
“externalId”: “external_id1”,
“meta”: {
“created”: “0001-01-01T00:00:00Z”,
“lastModified”: “0001-01-01T00:00:00Z”
},
“userName”: “[email protected]”,
“name”: {
“familyName”: “Doe”,
“givenName”: “John”
},
“active”: true,
“urn:ietf:params:scim:schemas:extension:outreach:2.0:User”: {
“profileName”: “Outreach SDR Profile”,
“roleName”: “Sales OPS”,
“custom1”: “Custom Field 1”,
“custom2”: “Custom Field 2”,
“custom3”: “Custom Field 3”,
“custom4”: “Custom Field 4”,
“custom5”: “Custom Field 5”,
}
}

I would like to provision the profilename attribute but its apart of a different schema

@RAKGDS @rajeshs @suresh1_munuswamy Ive attached the scim json above but I would like to provision the profileName attribute but its apart of the none ootb scim schema. Not sure how to provision to that attribute via create policy

Essentially I would like to provision the attributes in the “urn:ietf:params:scim:schemas:extension:outreach:2.0:User”: Schema but it looks like sailpoint by default is only provisioning to urn:ietf:params:scim:schemas:core:2.0:User. in the create policy.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.