Post

IdentityNow - Searchable Attributes

Indexing a SailPoint IdentityNow Attribute in an Identity Cube for use in Correlation Rules

  1. API to GET the attribute details
1
2
3
 HTTP GET https://<<tenant>>.api.identitynow.com/cc/api/identityAttribute/get?name=<<attr_name>>

  1. Use Response from Step 1 and set “searchable” flag as true.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
HTTP POST https://<<tenant>>.api.identitynow.com/cc/api/identityAttribute/update?name=<<attr_name>>


{
    "displayName": "<<Display Name>>",
    "name": "<<attr_name>>",
    "searchable": true,
    "sources": [
        {
            "properties": {
                "ruleName": "Cloud Promote Identity Attribute",
                "ruleType": "IdentityAttribute"
            },
            "type": "rule"
        }
    ],
    "type": "String"
}


This post is licensed under CC BY 4.0 by the author.