quoteAccountSignup

Graphql fields and variables for the quoteAccountSignup mutation

Create an account and get a quote amount for a subscription.

Scope required: standard:write

mutation quoteAccountSignup ($accountName: String!, $billingContact: ContactAttributes!, $entityId: ID!, $priceListCode: String!, $quantity: Int!) {
  quoteAccountSignup (accountName: $accountName, billingContact: $billingContact, entityId: $entityId, priceListCode: $priceListCode, quantity: $quantity) {
      account {
        accountTypeId
        addressValidated
        annualRevenue
        arr
        billingCity
        billingContactId
        billingCountry
        billingDay
        billingState
        billingStreet
        billingZip
        code
        createdAt
        currencyId
        description
        draftInvoices
        duns
        emailsEnabled
        employees
        entityId
        entityUseCode
        fax
        groupId
        id
        industryId
        invoiceTemplateId
        linkedinUrl
        mrr
        mur
        name
        netPaymentDays
        newQuoteBuilder
        ownerUserId
        phone
        shippingCity
        shippingCountry
        shippingState
        shippingStreet
        shippingZip
        taxNumber
        taxNumberValidated
        timezone
        updatedAt
        website
      }
      amount
      currencyId
      errors
      portalSessionToken
      quote {
        acceptedByName
        acceptedByTitle
        accountId
        amount
        amountDue
        applicationDate
        applied
        applyOnAccept
        backdatedPeriods
        backdatedQuote
        billingDay
        contactId
        createdAt
        credits
        currencyId
        dealId
        discount
        discountValue
        endDate
        evergreen
        expiresAt
        id
        invoiceImmediately
        invoiceImmediatelyAvailable
        invoiceUntil
        isPendingApprovalRequest
        message
        name
        netPaymentDays
        notes
        number
        ownerId
        payToAccept
        payableId
        periodAmount
        poNumber
        requiresApproval
        smallUnitAmountDue
        splitInvoice
        startDate
        subtotal
        taxAmount
        taxCode
        updatedAt
        uuid
      }
      tenant {
        accountId
        code
        createdAt
        id
        lastLogin
        latestProvisioningChangeId
        name
        platformId
        provisioningRequired
        provisioningState
        subdomain
        updatedAt
        userCount
        utilizationMetrics
      }
  }
}

Arguments

{
  "accountName": "",
  "billingContact": {
    "code": "",
    "firstName": "",
    "lastName": "",
    "email": "",
    "salutation": "",
    "title": "",
    "phone": "",
    "mobile": "",
    "mailingStreet": "",
    "mailingCity": "",
    "mailingZip": "",
    "mailingState": "",
    "mailingCountry": "",
    "portalAccess": true,
    "description": "",
    "accountId": "456123",
    "campaignCode": "",
    "linkedinUrl": ""
  },
  "entityId": "456123",
  "priceListCode": "",
  "quantity": 123
}
Name
Type
Description

accountName

String

billingContact

entityId

ID

priceListCode

String

quantity

Int

Response

Name
Type
Description

account

amount

Float

currencyId

String

errors

List (String)

portalSessionToken

String

quote

tenant

Last updated

Was this helpful?