accountSignup

Graphql fields and variables for the accountSignup mutation

Using an existing account, sign up and pay for a subscription.

Scope required: standard:write

mutation accountSignup ($entityId: ID!, $paymentMethodId: String!, $pluginId: String!, $accountId: ID!, $quoteId: ID!, $priceListCode: String!) {
  accountSignup (entityId: $entityId, paymentMethodId: $paymentMethodId, pluginId: $pluginId, accountId: $accountId, quoteId: $quoteId, priceListCode: $priceListCode) {
      errors
      quote {
        acceptedByName
        acceptedByTitle
        accountId
        amount
        amountDue
        applicationDate
        applied
        applyOnAccept
        backdatedPeriods
        backdatedQuote
        billingDay
        contactId
        createdAt
        credits
        currencyId
        dealId
        discount
        discountValue
        documentTemplateId
        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
      }
  }
}

Arguments

{
  "entityId": "456123",
  "paymentMethodId": "",
  "pluginId": "",
  "accountId": "456123",
  "quoteId": "456123",
  "priceListCode": ""
}
Name
Type
Description

entityId

ID

paymentMethodId

String

pluginId

String

accountId

ID

quoteId

ID

priceListCode

String

Response

Name
Type
Description

errors

List (String)

quote

Last updated

Was this helpful?