REST API for Source Account Correlation Configuration

Hello everyone,
I am working on a task which automates creation of source , aggregates accounts and correlates the accounts. I want to set up account correlation configuration using REST API , is there any end point? If not, is there any other way apart from UI?
Thank you.

Hi @sidharth_tarlapally,

Welcome to SailPoint developer community.

Have you tried using the below API as it lists the configuration of account correlation as well.

Let me know if it does not solve your ask.

Thanks

1 Like

Hey @ashutosh08 thanks for your response .
The suggested API end point cannot satisfy my use case.
We may replace the Account Correlation Configuration values , but in the first place , we need to create the configuration . The ID of this correlation configuration is then referred in accountCorrelationConfiguration. The end point required here is more likely something , which should be able to create a correlation configuration.

Hi @sidharth_tarlapally ,

I understand your need but unforunately this api does not exist.

We do the similar think by automate more a hundred sources creation and configuration, but for account correlation configuration we do not found any api to do that.

They use an internal and not exposed api to that.

They use internally the following end point :

POST on  https://tenant.api.identitynow.com/diana/sources/sources/{{sourceId}}/updateCorrelationConfig

Example of body :

{
    "attributeAssignments": [
        {
            "operation": "EQ",
            "matchMode": null,
            "property": "name",
            "value": "id",
            "ignoreCase": true,
            "operationMatchMode": "EQ"
        }
    ]
}

property : is the identity attribute name
value : is the account attribute name

Base on this discussion POST /api/source/setCorrelationConfig - Identity Security Cloud (ISC) / Non-Public API Deprecations - SailPoint Developer Community the endpoint will be replaced in the future.

You can request also Sailpoint.

1 Like

Thank you @baoussounda ! This is helpful .

2 Likes

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