CartPaymethod
Available payment method option for the shopping cart.
Represents a payment method that can be selected for cart checkout, including associated costs and configuration details.
type CartPaymethod {
code: String!
name: String!
externalCode: String
type: String
taxCode: Taxcode
price: Float!
}
Fields
CartPaymethod.code
● String!
non-null scalar
Unique identifier code for the payment method.
Internal system code used to identify and process this payment method (e.g., 'CC', 'BANK', 'PAYPAL').
CartPaymethod.name
● String!
non-null scalar
Display name of the payment method.
Human-readable name shown to customers during payment method selection (e.g., 'Credit Card', 'Bank Transfer').
CartPaymethod.externalCode
● String
scalar
External system identifier for the payment method.
Code used by external payment processors or integrations to identify this payment method.
CartPaymethod.type
● String
scalar
Payment method type or category.
Classification of the payment method for processing and display purposes.
CartPaymethod.taxCode
● Taxcode
enum
Tax code applied to payment method fees.
Determines the tax rate and handling for any fees associated with this payment method.
CartPaymethod.price
● Float!
non-null scalar
Cost associated with using this payment method.
Additional fee charged to the customer for selecting this payment method, excluding VAT.
Member Of
Cart
object