OBJECT

UploadPictureOutput

The type representing response objects for a upload contact picture mutation.

link GraphQL Schema definition

  • type UploadPictureOutput {
  • # The contact ID for which the picture was uploaded.
  • contact_id: UUID!
  • # The list of errors in case the status was `error`.
  • errors: [ErrorMessage!]
  • # The file name.
  • filename: String!
  • # The picture ID.
  • resource_id: UUID
  • # The status of the operation. Was the upload successful or did it failed.
  • status: RequestStatus!
  • # The URL of the picture.
  • url: String
  • }

link Require by