invoiceSendEmail

Graphql fields and variables for the invoiceSendEmail mutation

Send an invoice through email

Scope required: billing:write

mutation invoiceSendEmail ($id: ID!, $contactId: ID!) {
  invoiceSendEmail (id: $id, contactId: $contactId) {
      errors
      invoice {
        accountId
        amount
        amountDue
        amountPaid
        baseCurrencyId
        baseCurrencyTotal
        couponApplied
        createdAt
        credits
        currencyId
        description
        dueAt
        hasPaymentMethod
        id
        internalNotes
        isLegacy
        issuedAt
        kind
        netPaymentDays
        notes
        number
        paidAt
        payableId
        paymentFailedAt
        paymentFailureReason
        poNumber
        portalUrl
        quoteId
        sendInvoiceTo
        smallUnitAmountDue
        subtotal
        taxAmount
        taxRate
        updatedAt
        url
        uuid
      }
  }
}

Arguments

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

id

ID

contactId

ID

Response

Name
Type
Description

errors

List (String)

invoice

Last updated

Was this helpful?