Users.GetUserAsync() return empty groups

Hello - I’m trying to return group info from Users.GetUserAsync() in .net core. However, when I make the call groups comes back empty. Any help would be greatly appreciated! Thanks!
{
“created”: “2018-08-30T18:29:35-04:00”,
“credentials”: {
“emails”: [
{
“status”: {
“value”: “VERIFIED”
},
“type”: {
“value”: “PRIMARY”
},
“value”: “xxxxxx”
}
],
“password”: {},
“provider”: {
“name”: “OKTA”,
“type”: {
“value”: “OKTA”
}
},
“recoveryQuestion”: {
“question”: “What did you earn your first medal or award for?”
}
},
“id”: “xxxxxx”,
“lastLogin”: “2018-11-29T20:54:19-05:00”,
“lastUpdated”: “2018-11-13T19:01:14-05:00”,
“passwordChanged”: “2018-08-30T18:32:03-04:00”,
“profile”: {
“email”: “xxxxxx”,
“firstName”: “xxxxx”,
“lastName”: “xxxxx”,
“login”: “xxxxx”
},
“status”: {
“value”: “ACTIVE”
},
“statusChanged”: “2018-08-30T18:32:03-04:00”,
“appLinks”: {},
“roles”: {},
"groups": {},
“factors”: {}
}

Groups Claim Setup:

I tried creating a claim as above. However, I am still not getting the groups in the Okta response. I was receiving group data until recently.