contactDelete

Graphql fields and variables for the contactDelete mutation

Delete a contact

Scope required: standard:write

mutation contactDelete ($id: ID!, $code: String!) {
  contactDelete (id: $id, code: $code) {
      contact {
        accountId
        code
        createdAt
        description
        email
        entityId
        firstName
        fullName
        id
        lastName
        linkedinUrl
        mailingCity
        mailingCountry
        mailingState
        mailingStreet
        mailingZip
        mobile
        phone
        portalAccess
        salutation
        title
        updatedAt
      }
      errors
  }
}

Arguments

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

id

ID

code

String

Response

Name
Type
Description

contact

errors

String

Last updated

Was this helpful?