OBJECT

Mutation

link GraphQL Schema definition

  • type Mutation {
  • # Delete contact's profile picture.
  • #
  • # Arguments
  • # contact_id: [Not documented]
  • deleteProfilePicture(contact_id: UUID!): DeletePictureOutput!
  • # Import contact labels in bulk. The input limited to 100 items at once.
  • # If you need more, please contact with us to increase the quota.
  • #
  • # Arguments
  • # input: [Not documented]
  • importContactLabels(input: [ContactLabelInput!]!): ImportContactLabelsOutput!
  • # Import contact in bulk. The input limited to 500 items at once.
  • # If you need more, please contact with us to increase the quota.
  • #
  • # Arguments
  • # input: [Not documented]
  • importContacts(input: [ContactInput!]!): ImportContactsOutput!
  • # Upload contact's profile picture.
  • #
  • # Arguments
  • # contact_id: [Not documented]
  • # file: [Not documented]
  • uploadProfilePicture(contact_id: UUID!, file: Upload!): UploadPictureOutput!
  • }

link Require by

This element is not required by anyone