Field not getting populated while provisioning using SCIM connector, neither the data is coming via aggregation.
Any solutions for these please? Much appreciated.
Field not getting populated while provisioning using SCIM connector, neither the data is coming via aggregation.
Any solutions for these please? Much appreciated.
@SYounus please try to check if the attribute has been added to account schema if not try to discover the schema and check if the attribute gets added in the source backend.if not try to add it manually and update the source using below
t. Update the source using PUT method and add below piece of mapping under → schemaPropertyMappings → Under the tag → "urn": "urn:ietf:params:scim:schemas:core:2.0:User", below group attribute mapping and update the source using PUT.
{
"name": "<attributename>",
"property": "<attributename>",
"value": null,
"getter": "openconnector.connector.scim2.SCIM2PropertyGetter",
"queryClass": null,
"setter": "openconnector.connector.scim2.SCIM2PropertySetter",
"childAttributeMappingList": null,
"config": null,
"generatedBySystem": false,
"originalXml": null
}
This worked, thank you so much!
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.