Hi team,
I'm working on IBM Security Verify, using IBM's APIs to add/remove users within groups. When I use the API to add or remove a user from a group, the end user automatically receives a confirmation email. My goal is to prevent this from happening.
For completeness, here is the API call I am using:
https://{tenant}/v2.0/Groups/{groupID}
Body:
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
],
"Operations": [
{
"op": "add",
"path": "members",
"value": [ { "type": "user", "value": "userID" } ]
}
]
}
However, if I perform this operation through the administration console, I can ensure that the user does not receive any confirmation email.
Can you please help me achieve the same behavior via API?
Thanks for your support!
------------------------------
Carmine Salvatore
------------------------------