githubEdit

quoteAccept

Graphql fields and variables for the quoteAccept mutation

Flag a quote as accepted

Scope required: standard:write

mutation quoteAccept ($title: String!, $name: String!, $poNumber: String!, $taxNumber: String!, $quoteId: ID!) {
  quoteAccept (title: $title, name: $name, poNumber: $poNumber, taxNumber: $taxNumber, quoteId: $quoteId) {
      errors
      quote {
        acceptedAt
        acceptedByName
        acceptedByTitle
        accountId
        amount
        amountAsCurrency
        amountDue
        applicationDate
        applied
        applyOnAccept
        backdatedPeriods
        backdatedQuote
        billingDay
        contactId
        createdAt
        credits
        currencyId
        customFieldsData
        dealId
        discount
        discountValue
        documentTemplateId
        emailBody
        emailSubject
        endDate
        evergreen
        expiresAt
        hasCustomFields
        id
        invoiceImmediately
        invoiceImmediatelyAvailable
        invoiceUntil
        isPendingApprovalRequest
        message
        name
        netPaymentDays
        notes
        number
        ownerId
        payToAccept
        payableId
        periodAmount
        poNumber
        requiresApproval
        sharedAt
        signingIntegration
        skipBackdatedInvoices
        smallUnitAmountDue
        splitInvoice
        startDate
        subtotal
        taxAmount
        taxCode
        updatedAt
        userEmailBody
        userEmailSubject
        uuid
        viewedAt
      }
  }
}

Arguments

Name
Type
Description

title

String

name

String

poNumber

String

taxNumber

String

quoteId

ID

Response

Name
Type
Description

errors

String

quote

Last updated

Was this helpful?