Contact Mutation

Mutation Types

Mutations are responsible to insert or update a specific register, the operation insert or update is defined by everrealId, in case this contact you could use to delete contact.

type Mutation {
    removeContact(id: String): AsyncEventResponse
}

type AsyncEventResponse {
  statusCode: Int
  message: String
}

Here are details on the capabilities of different mutations

  • The removeContact mutation is used to delete a contact from Everreal system and contact will no longer be available in Everreal. To delete contact, you should pass everrealUUID which can be acquired from tenants endpoint.(reference to delete tenant)

Below we are providing a full example how to delete

mutation {
  removeContact(
    id: <everreal_uuid>
  )
}

Last updated