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
Attribute | Description |
---|---|
id | Global identifier for the user. |
User's email address | |
phoneNumber | User's phone number |
name | User's name. |
address | User's address. |
status | User's status |
notificationPreferences | Notifications are currently not sent for Enablement Services |
legalAgreementVersions | The Legal agreement versions the user has accepted. LegalAgreementVersions |
createdAt | The time the user was created in the database. |
updatedAt | The last time the user was updated. |
syncedAt | The last time this user's connections were synced. |
deletedAt | The time this user was deleted from the database. |