Skip to main content

UpdatePointOfSaleInput

No description

input UpdatePointOfSaleInput {
id: ID!
storeId: ID
name: String
description: String
manualAmount: Boolean
requireEmail: Boolean
requireTaxId: Boolean
fixedAmount: Int
fixedCurrency: Currencies
includeQRCode: Boolean
qrCodeText: String
paymentCallbackUrl: String
transactionType: TransactionTypes
paymentMethods: [PaymentMethods!]
}

Fields

UpdatePointOfSaleInput.id ● ID! non-null scalar

The ID of the point of sale

UpdatePointOfSaleInput.storeId ● ID scalar

Store's ID where this point of sale belongs

UpdatePointOfSaleInput.name ● String scalar

A name that represents the point of sale

UpdatePointOfSaleInput.description ● String scalar

The description of the point of sale

UpdatePointOfSaleInput.manualAmount ● Boolean scalar

Whether the user can manually enter the amount or not

UpdatePointOfSaleInput.requireEmail ● Boolean scalar

Whether the user must provide an email address or not

UpdatePointOfSaleInput.requireTaxId ● Boolean scalar

Whether the user must provide a tax ID or not

UpdatePointOfSaleInput.fixedAmount ● Int scalar

Fixed amount to be charged

UpdatePointOfSaleInput.fixedCurrency ● Currencies enum

Fixed currency to be charged

UpdatePointOfSaleInput.includeQRCode ● Boolean scalar

Whether the user must provide a fixed amount or not

UpdatePointOfSaleInput.qrCodeText ● String scalar

QR code text

UpdatePointOfSaleInput.paymentCallbackUrl ● String scalar

The URL where to notify a success payment (server-to-server HTTP POST request)

UpdatePointOfSaleInput.transactionType ● TransactionTypes enum

The type of the transaction

UpdatePointOfSaleInput.paymentMethods ● [PaymentMethods!] list enum

The payment methods allowed for the point of sale

Member Of

updatePointOfSale mutation