invoiceRelease

Graphql fields and variables for the invoiceRelease mutation

Transition a draft invoice to ready state

Scope required: standard:write

mutation invoiceRelease ($id: ID!) {
  invoiceRelease (id: $id) {
      errors
      invoice {
        accountId
        amount
        amountDue
        amountPaid
        baseCurrencyId
        couponApplied
        createdAt
        credits
        currencyId
        description
        dueAt
        id
        isLegacy
        issuedAt
        kind
        netPaymentDays
        notes
        number
        paidAt
        payableId
        poNumber
        portalUrl
        quoteId
        smallUnitAmountDue
        subtotal
        taxAmount
        updatedAt
        url
        uuid
      }
  }
}

Arguments

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

id

ID

Response

Name
Type
Description

errors

List (String)

invoice

Last updated

Was this helpful?