Hello, anyone here who have an idea in assigning user to a Group in OKTA using postman?
I encountered Unsupported error when doing this command
POST api/v1/groups/groupid/users/userid
I aslo tried creating the user in a group but still getting an error
POST api/v1/users?activate=true
{
“profile”: {
“firstName”: “Isaac”,
“lastName”: “Brock”,
“email”: “isaac@{{email-suffix}}”,
“login”: “isaac@{{email-suffix}}”
},
“groupIds”: [
“{{groupId}}”
]
}
Hope someone can help. Thanks!