DeleteMe

The deleteMe mutation is used to when a user wants to completely close their account and no longer have tradelines reported to credit bureaus.

Below is an example of the deleteMe mutation, detailing all fields included in the output.



mutation deleteMe  {
  deleteMe {
    user {
            id
        email
        phoneNumber
        status
        createdAt
        updatedAt
        syncedAt
        deletedAt
        name {
            first
            middle
            last
        }
        address {
            line1
            line2
            city
            state
            country
            zipcode
            type
        }
        notificationPreferences {
            type
            email
            phoneNumber
        }
        legalAgreementVersions {
            name
          	version
        }
     }
  }
}


Output Attributes - User

AttributeDescription
idGlobal identifier for the user.
emailUser's email address
phoneNumberUser's phone number
nameUser's name.
addressUser's address.
statusUser's status
notificationPreferencesNotifications are currently not sent for Enablement Services
legalAgreementVersionsThe Legal agreement versions the user has accepted. LegalAgreementVersions
createdAtThe time the user was created in the database.
updatedAtThe last time the user was updated.
syncedAtThe last time this user's connections were synced.
deletedAtThe time this user was deleted from the database.