Skip to content

resetUsersPasswordsWithUserIds

Used by the administrator to reset passwords for selected users in the organization.

Arguments

Argument Type Description
input (required) ResetUsersPasswordsWithUserIdsInput! Specifies the input used to reset passwords for selected users in the organization.

Returns

Void

Sample

mutation ResetUsersPasswordsWithUserIds($input: ResetUsersPasswordsWithUserIdsInput!) {
  resetUsersPasswordsWithUserIds(input: $input)
}
{
  "input": {
    "invalidateAllSessions": true,
    "userIds": [
      "example-string"
    ]
  }
}
{
  "data": {
    "resetUsersPasswordsWithUserIds": "example-string"
  }
}