Hi,
Good day! I need help getting the last login information for accounts ending with “.1” in Azure Active Directory, as we have multiple accounts. We already have last login attributes, but they can be updated for both standard and secondary accounts.
here’s the script that I’m using in transform:
{
“name”: “AAD lastlogin date for .1 account”,
“type”: “firstValid”,
“attributes”: {
“values”: [
{
“attributes”: {
“sourceName”: “Azure Active Directory”,
“attributeName”: “lastSignInDateTime”
},
“type”: “accountAttribute”
},
{
“attributes”: {
“value”: “NONE”
},
“type”: “static”
}
]
},
“internal”: false
}