githubEdit

legacyPaymentCreate

Graphql fields and variables for the legacyPaymentCreate mutation

Create a legacy payment

Scope required: billing:write

For a complete list of input attributes see the PaymentAttributes type

mutation legacyPaymentCreate ($attributes: PaymentAttributes!, $invoiceIds: [ID!]!) {
  legacyPaymentCreate (attributes: $attributes, invoiceIds: $invoiceIds) {
      errors
      payment {
        accountId
        amount
        amountUnapplied
        baseCurrencyCash
        baseCurrencyId
        completedAt
        conversionRate
        createdAt
        currencyId
        description
        errorCode
        errorMessage
        fees
        id
        isLegacy
        memo
        paymentProcessor
        receivedAt
        remoteTransactionId
        startedAt
        updatedAt
      }
  }
}

Arguments

Name
Type
Description

invoiceIds

List (ID)

Response

Name
Type
Description

errors

List (String)

payment

Last updated

Was this helpful?