Skip to main content

CreatePointOfSaleInput

No description

input CreatePointOfSaleInput {
storeId: ID
name: String
manualAmount: Boolean
requireEmail: Boolean
requireTaxId: Boolean
fixedAmount: Int
fixedCurrency: Currencies
includeQrCode: Boolean
qrCodeText: String
paymentCallbackUrl: String
type: PointOfSaleType!
}

Fields

CreatePointOfSaleInput.storeId ● ID scalar

Store's ID where this point of sale belongs

CreatePointOfSaleInput.name ● String scalar

A name that represents the point of sale

CreatePointOfSaleInput.manualAmount ● Boolean scalar

Whether the user can manually enter the amount or not

CreatePointOfSaleInput.requireEmail ● Boolean scalar

Whether the user must provide an email address or not

CreatePointOfSaleInput.requireTaxId ● Boolean scalar

Whether the user must provide a tax ID or not

CreatePointOfSaleInput.fixedAmount ● Int scalar

Fixed amount to be charged

CreatePointOfSaleInput.fixedCurrency ● Currencies enum

Fixed currency to be charged

CreatePointOfSaleInput.includeQrCode ● Boolean scalar

Whether the user must provide a fixed amount or not

CreatePointOfSaleInput.qrCodeText ● String scalar

QR code text

CreatePointOfSaleInput.paymentCallbackUrl ● String scalar

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

CreatePointOfSaleInput.type ● PointOfSaleType! non-null enum

The type of the point of sale

Member Of

createPointOfSale mutation