userDelete

Graphql fields and variables for the userDelete mutation

Delete a user

Scope required: security:write

mutation userDelete ($id: ID!) {
  userDelete (id: $id) {
      errors
      user {
        allowLoginViaEmailLink
        createdAt
        email
        enabled
        entityId
        firstName
        fullName
        groupId
        id
        imageUrl
        lastLogin
        lastName
        managerUserId
        roleId
        title
        updatedAt
        uuid
      }
  }
}

Arguments

{
  "id": "456123"
}
Name
Type
Description

id

ID

Response

Name
Type
Description

errors

String

user

Last updated

Was this helpful?